import { TouchableOpacityProps } from "react-native"; declare type Props = { status?: "checked" | "indeterminate" | "unchecked"; disabled?: boolean; onPress?: () => void; color?: string; } & TouchableOpacityProps; export default function Checkbox(props: Props): JSX.Element; export declare const SEED_DATA: { name: string; tag: string; category: string; layout: null; props: { disabled: { group: string; label: string; description: string; editable: boolean; required: boolean; defaultValue: boolean; formType: string; propType: string; }; color: { group: string; label: string; description: string; editable: boolean; required: boolean; formType: string; propType: string; defaultValue: null; }; fieldName: { defaultValue: string; valuePropName: string; handlerPropName: string; group: string; label: string; description: string; formType: string; propType: string; editable: boolean; required: boolean; }; }; }; export {};