import { type PickerSlots, type PickerProps } from '../picker/common';
import { type DefaultProps } from '../config';
import { type TransitionHookEmits } from '../popup/common';
import { type FormPopoutProps } from '../../use/useFormPopout';
export interface PickerPopoutProps extends FormPopoutProps, PickerProps {
}
export declare const defaultPickerPopoutProps: () => DefaultProps<PickerPopoutProps>;
export interface PickerPopoutSlots extends PickerSlots {
}
export interface PickerPopoutEmits extends TransitionHookEmits {
    (e: 'update:visible', visible: boolean): void;
    (e: 'update:model-value', value: any): void;
    (e: 'change', value: any): void;
    (e: 'confirm'): void;
}
export interface PickerPopoutExpose {
}
