import React, { ReactElement } from 'react'; import { CheckTypes } from '../../models'; interface Props { children: React.ReactNode; name: string; type: 'text' | 'radio' | 'checkbox' | 'checkbox_master'; active?: CheckTypes; disabled?: boolean; hidden?: boolean; onClick?: (checked: CheckTypes) => void; onChange?: (checked: CheckTypes) => void; } export declare const Item: (props: Props) => ReactElement; export {}; //# sourceMappingURL=index.d.ts.map