import { Insets, TouchableWithoutFeedbackProps } from "react-native"; import { FlexProps } from "../Flex"; type CheckboxProps = Omit & Omit & { hitSlop?: Insets; checked?: boolean; disabled?: boolean; error?: boolean; text?: React.ReactElement | string; subtitle?: React.ReactElement | string; children?: React.ReactElement | string; accessibilityLabel?: string; accessibilityHint?: string; }; export declare const Checkbox: React.FC; interface CheckMarkProps { size: number; } export declare const CheckMark: ({ size }: CheckMarkProps) => import("react/jsx-runtime").JSX.Element; export declare const DisabledMark: import("styled-components/native/dist/types").IStyledComponentBase<"native", import("styled-components/native/dist/types").FastOmit>; export {};