import type { DefineComponent } from "vue"; /** InputGroup component props */ export interface InputGroupProps { block?: boolean; /** default: true */ compact?: boolean; /** default: light */ theme?: string; size?: string; } /** InputGroup Vue 3 component */ declare const InputGroup: DefineComponent; export default InputGroup;