import { SvelteComponentTyped } from "svelte"; import type { ButtonSize } from '../common/types/ButtonSize'; declare const __propDef: { props: { class?: string; name: string; size?: ButtonSize | string; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export declare type IconProps = typeof __propDef.props; export declare type IconEvents = typeof __propDef.events; export declare type IconSlots = typeof __propDef.slots; export default class Icon extends SvelteComponentTyped { } export {};