import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; class?: string | undefined; fab?: boolean | undefined; icon?: boolean | undefined; block?: boolean | undefined; size?: string | undefined; tile?: boolean | undefined; text?: boolean | undefined; depressed?: boolean | undefined; outlined?: boolean | undefined; rounded?: boolean | undefined; disabled?: boolean | undefined; active?: boolean | undefined; activeClass?: string | undefined; type?: string | undefined; ripple?: {} | undefined; role?: string | undefined; name?: string | undefined; style?: string | undefined; formaction?: string | undefined; button?: HTMLButtonElement | null | undefined; tabindex?: number | undefined; value?: string | number | string[] | null | undefined; ariaHasPopup?: boolean | 'dialog' | 'false' | 'true' | 'menu' | 'listbox' | 'tree' | 'grid' | undefined; }; events: { click: MouseEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; 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 {};