import { SvelteComponentTyped } from "svelte"; import { type IconEnum } from './icon.enums'; declare const __propDef: { props: { /** * What fill to use * @type {string} */ fill?: string | undefined; /** * Use current color as the primary color */ currentColor?: boolean | undefined; /** * Width of the icon */ width?: number | undefined; /** * Height of the icon */ height?: number | undefined; /** * Selected Icon * @type {IconEnum} */ icon: IconEnum; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type IconProps = typeof __propDef.props; export type IconEvents = typeof __propDef.events; export type IconSlots = typeof __propDef.slots; export default class Icon extends SvelteComponentTyped { } export {};