import * as React from "react"; import { TouchableHighlightProps } from "react-native"; import themeT from "../styles/DefaultTheme"; declare type Props = { status?: "checked" | "indeterminate" | "unchecked"; disabled?: boolean; onPress?: () => void; theme: typeof themeT; color?: string; } & TouchableHighlightProps; declare const _default: React.ComponentType & { theme?: import("@draftbit/react-theme-provider").$DeepPartial | undefined; }> & import("@draftbit/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics & React.FC, {}>; export default _default;