import * as React from "react"; import { SwitchProps } from "react-native"; import themeT from "../styles/DefaultTheme"; declare type Props = { value: boolean; disabled?: boolean; onValueChange?: (value: boolean) => void; color?: string; theme: typeof themeT; } & SwitchProps; 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; export declare const SEED_DATA: { name: string; tag: string; category: string; layout: {}; props: { disabled: { label: string; description: string; formType: string; propType: string; defaultValue: boolean; editable: boolean; required: boolean; group: string; }; value: { label: string; description: string; formType: string; propType: string; defaultValue: boolean; editable: boolean; required: boolean; group: string; }; color: { group: string; label: string; description: string; editable: boolean; required: boolean; defaultValue: null; formType: string; propType: string; }; }; };