import type { ViewStyle } from 'react-native'; interface CheckboxProps { checked?: boolean; label?: string; disabled?: boolean; style?: ViewStyle; _tokens?: Record; onChange?: (checked: boolean) => void; testID?: string; } export declare function Checkbox({ checked, label, disabled, style, _tokens, onChange, testID }: CheckboxProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=checkbox.d.ts.map