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