import React, { ReactElement } from 'react'; import { AlertTypes, CheckTypes } from '../../models'; interface Props { alert?: { message?: string; type: AlertTypes; }; checked?: CheckTypes; disabled?: boolean; label?: React.ReactNode; id?: string; name?: string; onChange?: (name: string, value: CheckTypes) => void; onClick?: (name: string, value: CheckTypes) => void; rotulo?: { texto: string; subTexto?: string; }; inputCustomProps?: any; } export declare const Checkbox: (props: Props) => ReactElement; export {}; //# sourceMappingURL=index.d.ts.map