import { SvelteComponentTyped } from "svelte"; import type { ButtonMode } from '../common/types/ButtonMode'; import type { ButtonSize } from '../common/types/ButtonSize'; import type { SemanticColor } from '../common/types/SemanticColor'; declare const __propDef: { props: { class?: string; label: string; icon?: string; href?: string; type?: string; disabled?: boolean; loading?: boolean; size?: ButtonSize; color?: SemanticColor | 'custom'; mode?: ButtonMode; rounded?: boolean; }; events: { click: any; } & { [evt: string]: CustomEvent; }; slots: {}; }; export declare type BtnProps = typeof __propDef.props; export declare type BtnEvents = typeof __propDef.events; export declare type BtnSlots = typeof __propDef.slots; export default class Btn extends SvelteComponentTyped { } export {};