UNPKG

stone-kit

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