/** @typedef {typeof __propDef.props} ButtonProps */ /** @typedef {typeof __propDef.events} ButtonEvents */ /** @typedef {typeof __propDef.slots} ButtonSlots */ export default class Button extends SvelteComponentTyped<{ [x: string]: any; text: any; href?: any; icon?: any; type?: string; }, { click: MouseEvent; } & { [evt: string]: CustomEvent; }, {}> { } export type ButtonProps = typeof __propDef.props; export type ButtonEvents = typeof __propDef.events; export type ButtonSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; text: any; href?: any; icon?: any; type?: string; }; events: { click: MouseEvent; } & { [evt: string]: CustomEvent; }; slots: {}; }; export {};