import React from 'react'; import { type AriaCheckboxGroupItemProps } from 'react-aria'; type FilteredCheckboxProps = Omit; /** * The OptionListItem is used to populate OptionList. They are outlined with a large interactive area and flexible * label content layout. */ export declare const OptionListItem: { (props: FilteredCheckboxProps): React.JSX.Element; displayName: string; }; export interface SplitLabelProps { children?: React.ReactNode; /** * convenience prop for passing through a string array instead of children */ content?: string[]; } /** * Helper component part to display a checkbox button label with a second column justified to the end */ export declare const ItemSplitLabel: { ({ children, content }: SplitLabelProps): React.JSX.Element | null; displayName: string; }; export {}; //# sourceMappingURL=OptionListItem.d.ts.map