import { ButtonHTMLAttributes, FC } from 'react'; declare type PresetUnion = 'primary' | 'danger' | 'lowKey' | 'dark' | 'darkMode'; declare type SizeUnion = 'mini' | 'small' | 'medium' | 'large'; export declare const Button: FC & { linkLike?: boolean; baseTextColor?: string; baseBackgroundColor?: string; baseBorderColor?: string; baseLinkColor?: string; preset?: PresetUnion; size?: SizeUnion; isLoading?: boolean; }>; export {};