import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; icon: string; label?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type TextIconProps = typeof __propDef.props; export declare type TextIconEvents = typeof __propDef.events; export declare type TextIconSlots = typeof __propDef.slots; export default class TextIcon extends SvelteComponentTyped { } export {};