import { PropsWithChildren } from 'react'; import { DropdownSelectState } from '../../state'; import { BoxProps, CheckboxProps } from '@wix/design-system'; export interface MultiInlineCheckboxProps extends Partial> { /** List of items to select from */ data: V[]; renderItem?: (item: V, index: number) => Partial>; state: DropdownSelectState; } declare function _MultiInlineCheckbox(props: MultiInlineCheckboxProps): JSX.Element; export declare const MultiInlineCheckbox: typeof _MultiInlineCheckbox & { displayName: string; }; export {}; //# sourceMappingURL=MultiInlineCheckbox.d.ts.map