import { type PopoutInputSlots, type PopoutInputProps } from '../popout-input/common'; import { type PickerPopoutSlots, type PickerPopoutEmits, type PickerPopoutProps } from '../picker-popout/common'; export interface PickerInputProps extends PickerPopoutProps, Omit { } export declare const defaultPickerInputProps: { visible?: (boolean | ((props: { visible: boolean; title: string; resettable: boolean; validateEvent: boolean; showConfirm: boolean; columns: any[] | any[][] | undefined; optionKeys: import("../..").OptionKeys; modelValue: any; }) => boolean)) | undefined; title?: (string | ((props: { visible: boolean; title: string; resettable: boolean; validateEvent: boolean; showConfirm: boolean; columns: any[] | any[][] | undefined; optionKeys: import("../..").OptionKeys; modelValue: any; }) => string)) | undefined; resettable?: (boolean | ((props: { visible: boolean; title: string; resettable: boolean; validateEvent: boolean; showConfirm: boolean; columns: any[] | any[][] | undefined; optionKeys: import("../..").OptionKeys; modelValue: any; }) => boolean)) | undefined; validateEvent?: (boolean | ((props: { visible: boolean; title: string; resettable: boolean; validateEvent: boolean; showConfirm: boolean; columns: any[] | any[][] | undefined; optionKeys: import("../..").OptionKeys; modelValue: any; }) => boolean)) | undefined; showConfirm?: (boolean | ((props: { visible: boolean; title: string; resettable: boolean; validateEvent: boolean; showConfirm: boolean; columns: any[] | any[][] | undefined; optionKeys: import("../..").OptionKeys; modelValue: any; }) => boolean)) | undefined; columns?: ((props: { visible: boolean; title: string; resettable: boolean; validateEvent: boolean; showConfirm: boolean; columns: any[] | any[][] | undefined; optionKeys: import("../..").OptionKeys; modelValue: any; }) => any[] | any[][]) | undefined; optionKeys?: ((props: { visible: boolean; title: string; resettable: boolean; validateEvent: boolean; showConfirm: boolean; columns: any[] | any[][] | undefined; optionKeys: import("../..").OptionKeys; modelValue: any; }) => import("../..").OptionKeys) | undefined; modelValue?: any; }; export interface PickerInputSlots extends PickerPopoutSlots, PopoutInputSlots { } export interface PickerInputEmits extends PickerPopoutEmits { }