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