import React from "react"; import { ImageSourcePropType, StyleProp, ViewStyle, TextStyle } from "react-native"; import theme from "../styles/DefaultTheme"; declare type Props = { image?: string | ImageSourcePropType; title?: string; subtitle?: string; aspectRatio?: number; elevation?: number; theme: typeof theme; style?: StyleProp; titleStyle?: StyleProp; subtitleStyle?: StyleProp; onPress: () => void; }; 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: {}; props: { image: { group: string; label: string; description: string; formType: string; propType: string; defaultValue: null; editable: boolean; required: boolean; }; title: { group: string; label: string; description: string; formType: string; propType: string; defaultValue: string; editable: boolean; required: boolean; }; subtitle: { group: string; label: string; description: string; formType: string; propType: string; defaultValue: string; editable: boolean; required: boolean; }; aspectRatio: { group: string; label: string; description: string; formType: string; propType: string; defaultValue: number; editable: boolean; required: boolean; }; elevation: { defaultValue: any; label: string; description: string; formType: string; propType: string; options: number[]; editable: boolean; required: boolean; group: string; }; }; };