import * as React from "react"; import { ImageSourcePropType, StyleProp, ViewStyle } from "react-native"; import theme from "../styles/DefaultTheme"; declare type Props = { image: string | ImageSourcePropType; size?: number; onPress?: () => void; style?: StyleProp; theme: typeof 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; description: string; category: string; layout: { width: number; height: number; }; props: { size: { group: string; label: string; description: string; editable: boolean; required: boolean; formType: string; propType: string; min: number; max: number; precision: number; step: number; defaultValue: number; }; image: { group: string; label: string; description: string; editable: boolean; required: boolean; formType: string; propType: string; defaultValue: string; }; }; };