/** @typedef {typeof __propDef.props} VouchButtonProps */ /** @typedef {typeof __propDef.events} VouchButtonEvents */ /** @typedef {typeof __propDef.slots} VouchButtonSlots */ export default class VouchButton extends SvelteComponentTyped<{ [x: string]: any; size?: string; active?: boolean; rounded?: string; weight?: string; testid?: string; }, { click: MouseEvent; mouseenter: MouseEvent; mouseleave: MouseEvent; } & { [evt: string]: CustomEvent; }, { default: {}; }> { } export type VouchButtonProps = typeof __propDef.props; export type VouchButtonEvents = typeof __propDef.events; export type VouchButtonSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; size?: string; active?: boolean; rounded?: string; weight?: string; testid?: string; }; events: { click: MouseEvent; mouseenter: MouseEvent; mouseleave: MouseEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};