import React, { ReactElement } from 'react'; import { StyleProp, TextStyle } from 'react-native'; import { TappableProps } from '../../components/Tappable/Tappable'; export declare type ButtonVariant = 'primary' | 'secondary' | 'tertiary' | 'outline'; export declare type ButtonSize = 'l' | 'm' | 's'; export declare type ButtonProps = TappableProps & { variant?: ButtonVariant; size?: ButtonSize; disabled?: boolean; before?: ReactElement; after?: ReactElement; textStyle?: StyleProp; fluid?: boolean; }; /** * Accessible button component */ export declare const Button: React.FC;