UNPKG

stone-kit

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