import { type PickerSlots, type PickerProps } from '../picker/common'; import { type DefaultProps } from '../config'; import { type FormPopoutProps } from '../popout/useFormPopout'; import type { MotionEmits } from '../motion'; export interface PickerPopoutProps extends FormPopoutProps, PickerProps { } export declare const defaultPickerPopoutProps: DefaultProps>; export interface PickerPopoutSlots extends PickerSlots { } export interface PickerPopoutEmits extends MotionEmits { (e: 'update:visible', visible: boolean): void; (e: 'update:modelValue', value: any, selectedOptions: any[], indexes: number[]): void; (e: 'change', value: any, selectedOptions: any[], indexes: number[]): void; (e: 'confirm', value: any, selectedOptions: any[], indexes: number[]): void; } export interface PickerPopoutExpose { }