// Copyright (c) Meta Platforms, Inc. and affiliates.

'use client';

/**
 * @file index.ts
 * @input Imports CheckboxList, CheckboxListItem components and types
 * @output Exports CheckboxList, CheckboxListProps, CheckboxListItem, CheckboxListItemProps
 * @position Component entry point; re-exported by /packages/core/src/index.ts
 *
 * SYNC: When modified, update this header
 */

export {CheckboxList} from './CheckboxList';
export type {CheckboxListProps} from './CheckboxList';
export {CheckboxListItem} from './CheckboxListItem';
export type {CheckboxListItemProps} from './CheckboxListItem';
