import type { ReactNode } from "react"; export declare function Checkbox(props: CheckboxProps): JSX.Element; export interface CheckboxProps { style?: any; value: boolean; textStyle?: any; onChange: (checked: boolean) => void; content?: string | ReactNode; checkedColor?: string; uncheckedColor?: string; }