/** @typedef {typeof __propDef.props} InputGroupProps */ /** @typedef {typeof __propDef.events} InputGroupEvents */ /** @typedef {typeof __propDef.slots} InputGroupSlots */ export default class InputGroup extends SvelteComponentTyped<{}, { [evt: string]: CustomEvent; }, { default: {}; }> { } export type InputGroupProps = typeof __propDef.props; export type InputGroupEvents = typeof __propDef.events; export type InputGroupSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: {}; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};