import { Props, ListItem } from './types';
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
type __VLS_Props = Props;
type __VLS_PublicProps = {
    'visible'?: boolean;
} & __VLS_Props;
declare const _default: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
    "update:visible": (value: boolean) => any;
} & {
    cancel: (item: MouseEvent) => any;
    change: (item: ListItem) => any;
}, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
    onCancel?: ((item: MouseEvent) => any) | undefined;
    "onUpdate:visible"?: ((value: boolean) => any) | undefined;
    onChange?: ((item: ListItem) => any) | undefined;
}>, {
    label: string;
    index: string;
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
export default _default;
