UNPKG

stone-kit

Version:
14 lines (13 loc) 330 B
/// <reference types="react" /> interface ICheckboxSelectProps { label?: string; checkboxes: { label: string; isSelected: boolean; disabled: boolean; setValue: () => void; }[]; addClassname?: string; } export declare const CheckboxSelect: React.FC<ICheckboxSelectProps>; export {};