import * as React from "react"; import { ImageSourcePropType, StyleProp, ViewStyle } from "react-native"; import ThemeT from "../styles/DefaultTheme"; import { ResizeModeType } from "./ResizeMode"; declare type Props = { theme: typeof ThemeT; useThemeGutterPadding: boolean; borderColor: string; borderWidth: number; backgroundColor: string; backgroundImage?: string | ImageSourcePropType; backgroundImageResizeMode?: ResizeModeType; elevation?: number; style?: StyleProp; children?: React.ReactNode; }; 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: string; height: number; }; props: { useThemeGutterPadding: { group: string; label: string; description: string; formType: string; propType: string; defaultValue: boolean; editable: boolean; required: boolean; }; backgroundImage: { label: string; description: string; group: string; formType: string; propType: string; defaultValue: string; editable: boolean; required: boolean; }; backgroundImageResizeMode: { group: string; label: string; description: string; editable: boolean; required: boolean; defaultValue: string; formType: string; propType: string; options: string[]; }; elevation: { defaultValue: any; label: string; description: string; formType: string; propType: string; options: number[]; editable: boolean; required: boolean; group: string; }; }; };