import { SvelteComponent } from "svelte"; import { type Icons } from './Icon.svelte'; declare const __propDef: { props: { [x: string]: any; icon: Icons; label: string; }; events: { click: MouseEvent; } & { [evt: string]: CustomEvent; }; slots: {}; exports?: undefined; bindings?: undefined; }; export type IconButtonProps = typeof __propDef.props; export type IconButtonEvents = typeof __propDef.events; export type IconButtonSlots = typeof __propDef.slots; export default class IconButton extends SvelteComponent { } export {};