import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; icon?: string | undefined; iconRight?: string | undefined; }; events: { click: MouseEvent; } & { [evt: string]: CustomEvent; }; slots: { left: {}; default: {}; right: {}; }; }; export declare type InputGroupProps = typeof __propDef.props; export declare type InputGroupEvents = typeof __propDef.events; export declare type InputGroupSlots = typeof __propDef.slots; export default class InputGroup extends SvelteComponentTyped { } export {};