/// import { Style, TailwindFn } from 'twrnc/dist/esm/types'; declare type Props = { tw: TailwindFn; onPress: () => void; style?: Style; textStyle?: Style; children: string; type?: 'primary' | 'secondary'; iconLeft?: string; iconRight?: string; loadingIcon?: string; loadingStyle?: Style; isLoading?: boolean; accessibilityLabel?: string; accessibilityHint?: string; }; declare const Button: ({ tw, style, textStyle, onPress, children, type, iconLeft, iconRight, loadingIcon, loadingStyle, isLoading, accessibilityLabel, accessibilityHint, }: Props) => JSX.Element; export default Button;