import type { HTMLButtonAttributes } from 'svelte/elements';
type $$ComponentProps = {
    children: any;
    size?: 'normal' | 'icon';
} & HTMLButtonAttributes;
declare const Button: import("svelte").Component<$$ComponentProps, {}, "">;
type Button = ReturnType<typeof Button>;
export default Button;
