react-restyle-components
Version:
Easy use restyle components
10 lines • 341 B
TypeScript
interface CheckBoxProps {
title: string;
data: Array<any>;
className?: string;
disable?: boolean;
onChange: (items: any) => void;
}
export declare const CheckBox: ({ title, data, className, onChange, }: CheckBoxProps) => import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=checkBox.component.d.ts.map