import { SvelteComponentTyped } from "svelte"; import type MaterialIcons from '../../types/material-icons'; declare const __propDef: { props: { [x: string]: any; icon: MaterialIcons; }; 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 {};