import { DefineComponent, ComponentOptionsMixin, PublicProps, ExtractPropTypes } from 'vue';
declare function __VLS_template(): Partial<Record<NonNullable<string | number>, (_: any) => any>> & Partial<Record<any, (_: {
    scope: any;
}) => any>> & Partial<Record<NonNullable<string | number>, (_: {
    scope: Record<string, any>;
}) => any>>;
declare const __VLS_component: DefineComponent<{
    item: {
        type: ObjectConstructor;
        default: () => {};
        required: true;
    };
    align: {
        type: StringConstructor;
        default: string;
    };
    sortable: {
        type: (BooleanConstructor | StringConstructor)[];
    };
}, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
    handleEvent: (...args: any[]) => void;
}, string, PublicProps, Readonly< ExtractPropTypes<{
    item: {
        type: ObjectConstructor;
        default: () => {};
        required: true;
    };
    align: {
        type: StringConstructor;
        default: string;
    };
    sortable: {
        type: (BooleanConstructor | StringConstructor)[];
    };
}>> & {
    onHandleEvent?: ((...args: any[]) => any) | undefined;
}, {
    item: Record<string, any>;
    align: string;
}, {}>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
