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; icon: string; href?: string; disabled?: boolean; loading?: boolean; size?: ButtonSize; color?: SemanticColor | 'custom'; mode?: ButtonMode; rounded?: boolean; }; events: { click: any; } & { [evt: string]: CustomEvent; }; slots: {}; }; export declare type IconBtnProps = typeof __propDef.props; export declare type IconBtnEvents = typeof __propDef.events; export declare type IconBtnSlots = typeof __propDef.slots; export default class IconBtn extends SvelteComponentTyped { } export {};