export type CheckboxProps = { classList?: any; class?: any; checked?: any; disabled?: boolean; type?: 'radio' | 'checkbox'; onChange?: Function; value?: any; name?: string; label?: string; inner?: boolean; }; export declare function Checkbox(props: CheckboxProps): import("solid-js").JSX.Element;