import { default as React } from 'react'; export type ButtonVariantType = 'primary' | 'secondary' | 'outline' | 'tertiary'; export type ButtonSizeType = 'small' | 'medium' | 'large'; export interface ButtonProps { variant?: ButtonVariantType; size?: ButtonSizeType; iconSource?: { left: string; right: string; }; warning?: boolean; fill?: boolean; disabled?: boolean; onClick?: () => void; children?: any; } export declare const Button: React.FC;