import * as React from 'react'; export declare type ButtonVariant = 'default' | 'black' | 'white' | 'outlinedBlue' | 'outlinedWhite'; export declare type ButtonType = 'submit' | 'button' | 'reset'; export declare const ButtonArrowIcon: () => JSX.Element; export interface IButton { style?: React.CSSProperties; disabled?: boolean; variant?: ButtonVariant; children?: React.ReactNode; onClick?: (event: React.MouseEvent) => void; name?: string; iconSrc?: string; arrow?: boolean; fullWidth?: boolean; height?: string; type?: ButtonType; dataCy?: string; } export declare const Button: (props: IButton) => JSX.Element; //# sourceMappingURL=Button.d.ts.map