import { type FC, type ReactNode } from 'react'; export interface SelectionItemProps { /** Item id — must match an id present in the `` `items` prop. */ itemId: string; /** When true, the checkbox is disabled and the item is excluded from select-all and ranges. */ disabled?: boolean; className?: string; children?: ReactNode; } export declare const SelectionItem: FC;