import { FC } from 'react'; import { StyleProp, TextStyle, ViewStyle } from 'react-native'; declare type ThemeButtonProperties = { mode?: 'contained' | 'outlined' | 'text'; color?: string; loading?: boolean; disabled?: boolean; lightIcon?: string; darkIcon?: string; defaultIcon?: string; showLabel?: boolean; contentStyle?: StyleProp; labelStyle?: StyleProp; style?: StyleProp; }; declare const ThemeButton: FC; export default ThemeButton;