import React, { type ReactNode } from 'react'; export interface CheckableBaseProps { className?: string; checked?: boolean; disabled?: boolean; label: ReactNode; inputName: string; inputType: string; value: string; children?: ReactNode; handleClick(event: any): void; handleChange?(checked: boolean): void; } export declare const CheckableBase: React.ForwardRefExoticComponent>; //# sourceMappingURL=CheckableBase.d.ts.map