import * as React from "react"; import { StyleProp, ViewStyle, PressableProps } from "react-native"; import Icon from "./Icon"; import type { Theme } from "../styles/DefaultTheme"; declare type Props = { icon?: string; color?: string; size?: number; disabled?: boolean; loading?: boolean; onPress: () => void; theme: Theme; style?: StyleProp; IconOverride?: typeof Icon; } & PressableProps; 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: { icon: { label: string; description: string; formType: string; propType: string; defaultValue: string; required: boolean; editable: boolean; group: string; }; color: { group: string; label: string; description: string; editable: boolean; required: boolean; defaultValue: null; formType: string; propType: string; }; onPress: { label: string; description: string; group: string; formType: string; propType: string; defaultValue: null; editable: boolean; required: boolean; }; size: { label: string; description: string; formType: string; propType: string; group: string; defaultValue: null; editable: boolean; required: boolean; min: number; step: number; }; }; };