import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; href?: string; disabled?: boolean; animated?: boolean; class?: string; element?: HTMLElement; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type IconButtonProps = typeof __propDef.props; export declare type IconButtonEvents = typeof __propDef.events; export declare type IconButtonSlots = typeof __propDef.slots; /** * An Icon Button is a clickable control that triggers an immediate action. Unlike the Button control, it serves the purpose of encapsulating an icon glyph as it’s content. [Docs](https://fluent-svelte.vercel.app/docs/components/iconbutton) * - Usage: * ```tsx * * * * * * ``` */ export default class IconButton extends SvelteComponentTyped { } export {};