import * as React from "react"; import type { Theme } from "../styles/DefaultTheme"; import { colorTypes } from "../types"; declare type Props = { onPress?: () => void; title?: string; selected: boolean; disabled?: boolean; color: colorTypes; theme: Theme; }; 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; props: { title: { group: string; label: string; description: string; required: boolean; editable: boolean; defaultValue: string; formType: string; }; selected: { group: string; label: string; description: string; required: boolean; editable: boolean; defaultValue: boolean; formType: string; }; color: { group: string; label: string; description: string; required: boolean; editable: boolean; defaultValue: string; formType: string; }; disabled: { group: string; label: string; description: string; editable: boolean; required: boolean; defaultValue: null; formType: string; }; }; layout: {}; };