import { SvelteComponentTyped } from "svelte"; import type MaterialIcons from '../../types/material-icons'; declare const __propDef: { props: { [x: string]: any; icon: MaterialIcons; }; events: { click: MouseEvent; } & { [evt: string]: CustomEvent; }; slots: {}; }; export declare type ControlProps = typeof __propDef.props; export declare type ControlEvents = typeof __propDef.events; export declare type ControlSlots = typeof __propDef.slots; export default class Control extends SvelteComponentTyped { } export {};