import { type PropType, type StyleValue } from 'vue'; export interface PopoutInputProps { rootStyle?: StyleValue; rootClass?: string; modelValue?: any; placeholder?: string; readonly?: boolean; disabled?: boolean; clearable?: boolean; loading?: boolean; validateEvent?: boolean; } export declare const popoutInputProps: { rootStyle: PropType; rootClass: StringConstructor; modelValue: null; readonly: BooleanConstructor; disabled: BooleanConstructor; clearable: BooleanConstructor; placeholder: StringConstructor; loading: BooleanConstructor; validateEvent: { type: BooleanConstructor; default: boolean; }; }; export interface PopoutInputEmits { (e: 'click', event: any): void; (e: 'update:model-value', value: string): void; (e: 'clear'): void; }