/// import { ButtonProps } from './types'; declare const Button: { (props: ButtonProps): JSX.Element; defaultProps: { children: null; disabled: boolean; label: string; loading: boolean; type: string; onPress: null; customStyles: {}; }; }; export default Button;