import { type CheckboxGroupProps } from '../checkbox/common';
import { type DefaultProps } from '../config';
import { type TransitionHookEmits } from '../popup/common';
import { type FormPopoutProps } from '../../use/useFormPopout';
export interface CheckboxPopoutProps extends FormPopoutProps, CheckboxGroupProps {
    searchable?: boolean;
    filterPlaceholder?: string;
    showCheckAll?: boolean;
    iconPosition?: 'left' | 'right';
}
export declare const defaultCheckboxPopoutProps: () => DefaultProps<CheckboxPopoutProps>;
export interface CheckboxPopoutSlots {
    default?(props: Record<string, never>): any;
}
export interface CheckboxPopoutEmits 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 CheckboxPopoutExpose {
}
