import { SvelteComponentTyped} from 'svelte/internal'; import type { Size } from '../../variations'; import type { Component } from '../../component'; interface IconProps extends Component { size?: Size; } /** * Vomantic Icon */ declare class Icon extends SvelteComponentTyped { } export default Icon;