import * as React from "react"; import { StyleProp, TextStyle, ViewStyle } from "react-native"; import theme from "../styles/DefaultTheme"; declare type Props = { titleTypeStyle?: StyleProp; titleColor: string; title: string; buttonText: string; dividerTopMargin?: number; icon: string; 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;