import React from 'react'; import { ButtonVariant } from './Button.styles'; export interface ButtonProps { children?: React.ReactNode; variant: ButtonVariant; disabled?: boolean; loading?: boolean; onClick?: (value: any) => void; leftIcon?: React.ReactNode; style?: React.CSSProperties; type?: 'submit' | 'button' | 'reset'; } export declare function Button(props: ButtonProps): import("react/jsx-runtime").JSX.Element; export declare namespace Button { var defaultProps: { variant: string; }; }