import { ViewStyle } from 'react-native'; import { ThemeType } from '../utils/themeTypes'; import { ButtonType } from './Button'; type buttonColorType = { styleArray: ViewStyle[]; type: ButtonType; theme: ThemeType; }; export declare const buttonColorHelper: ({ styleArray, type, theme, }: buttonColorType) => void; export declare const buttonHelper: (styleArray: ViewStyle[], flex: number | undefined, curved: boolean | undefined, flat: boolean | undefined, disabled: boolean | undefined, theme: ThemeType, type: ButtonType, contain: boolean | undefined) => void; type GetTextColorProp = { theme: ThemeType; type: ButtonType; }; export declare const getTextColors: ({ type, theme }: GetTextColorProp) => "white" | "theme" | "link" | "primary"; export {};