import { FC } from 'react'; import { ButtonProps as NativeButtonProps } from 'react-native'; type ButtonType = 'danger' | 'default' | 'primary'; interface ButtonProps extends NativeButtonProps { /** Type of the button, only affect its style. Defaults to `default`. */ type?: ButtonType; } export declare const Button: FC; export {};