import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; variant?: string | undefined; size?: string | undefined; background?: string | undefined; color?: string | undefined; fill?: string | undefined; ring?: string | undefined; weight?: string | undefined; width?: string | undefined; rounded?: string | undefined; label?: string | undefined; describedby?: string | undefined; }; events: { click: MouseEvent; } & { [evt: string]: CustomEvent; }; slots: { lead: {}; default: {}; trail: {}; }; }; export declare type ButtonProps = typeof __propDef.props; export declare type ButtonEvents = typeof __propDef.events; export declare type ButtonSlots = typeof __propDef.slots; export default class Button extends SvelteComponentTyped { } export {};