declare type ButtonProps = { /** Type of the button. Change to adjust styling. */ type?: 'primary' | 'secondary'; /** Label text of the button. */ text: 'string'; /** Whether the button is disabled. A disabled button is greyed out and onPress is not called on touch. */ disabled?: boolean; onPress: () => {}; }; /** A button is component that the user can press to trigger an action. */ export declare const Button: ({ type, text, disabled, onPress, }: ButtonProps) => JSX.Element; export {};