import { ButtonHTMLAttributes, DetailedHTMLProps } from 'react'; declare type Props = { icon?: string; loading?: boolean; size?: 'sm' | 'md' | 'lg'; variant?: 'primary' | 'secondary' | 'outline' | 'link'; }; export default function Button(props: DetailedHTMLProps, HTMLButtonElement> & Props): JSX.Element; export {}; //# sourceMappingURL=Button.d.ts.map