Variable ArrayControlRendererConst

ArrayControlRenderer: DefineComponent<{
    cells?: JsonFormsCellRendererRegistryEntry[];
    config?: any;
    enabled?: boolean;
    path: string;
    renderers?: JsonFormsRendererRegistryEntry[];
    schema: JsonSchema;
    uischema: ControlElement;
}, {
    appliedOptions: ComputedRef<any>;
    childLabelForIndex: ((index) => string);
    computedLabel: ComputedRef<string>;
    control: ComputedRef<{
        arraySchema: NonNullable<JsonSchema>;
        cells: JsonFormsCellRendererRegistryEntry[];
        childErrors: ErrorObject[];
        config: any;
        data: any;
        description: string;
        enabled: boolean;
        errors: string;
        i18nKeyPrefix: string;
        id: string;
        label: string;
        path: string;
        renderers: JsonFormsRendererRegistryEntry[];
        required: NonNullable<boolean | undefined>;
        rootSchema: NonNullable<JsonSchema>;
        schema: NonNullable<JsonSchema>;
        uischema: ControlElement;
        uischemas: JsonFormsUISchemaRegistryEntry[];
        visible: boolean;
    }> & ComputedRef<{
        childErrors: ErrorObject[];
        config: any;
        data: any;
        i18nKeyPrefix: string;
        label: string;
        required: boolean;
        schema: JsonSchema;
        uischema: UISchemaElement;
    } & {
        childErrors: ErrorObject<string, Record<string, any>, unknown>[];
        translations: ArrayTranslations;
    }>;
    icons: {
        current: ComputedRef<IconAliases>;
    };
    rawChildErrors: ErrorObject<string, Record<string, any>, unknown>[];
    styles: Styles;
    vuetifyProps: ((path) => any);
    addItem(path, value): (() => void);
    moveDown?(path, toMove): (() => void);
    moveUp?(path, toMove): (() => void);
    removeItems?(path, toDelete): (() => void);
}, {}, {
    dataLength(): number;
    validColumnProps(): string[];
}, {
    composePaths: ((path1, path2) => string);
    createDefaultValue: ((schema, rootSchema) => any);
    addButtonClick(): void;
    controlWithoutLabel(scope): ControlElement;
    moveDownClick(event, toMove): void;
    moveUpClick(event, toMove): void;
    removeItemsClick(event, toDelete): void;
    resolveUiSchema(propName): ControlElement;
    title(prop): string;
}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{
    cells?: JsonFormsCellRendererRegistryEntry[];
    config?: any;
    enabled?: boolean;
    path: string;
    renderers?: JsonFormsRendererRegistryEntry[];
    schema: JsonSchema;
    uischema: ControlElement;
}> & Readonly<{}>, {
    cells: JsonFormsCellRendererRegistryEntry[];
    config: Record<string, any>;
    enabled: boolean;
    renderers: JsonFormsRendererRegistryEntry[];
}, {}, {
    DispatchRenderer: DefineComponent<ExtractPropTypes<{
        cells: {
            default: undefined;
            required: boolean;
            type: PropType<JsonFormsCellRendererRegistryEntry[]>;
        };
        config: {
            default: undefined;
            required: boolean;
            type: ObjectConstructor;
        };
        enabled: {
            default: undefined;
            required: false;
            type: BooleanConstructor;
        };
        path: {
            required: true;
            type: StringConstructor;
        };
        renderers: {
            default: undefined;
            required: boolean;
            type: PropType<JsonFormsRendererRegistryEntry[]>;
        };
        schema: {
            required: true;
            type: PropType<JsonSchema>;
        };
        uischema: {
            required: true;
            type: PropType<UISchemaElement>;
        };
    }>, {
        renderer: ComputedRef<{
            cells: JsonFormsCellRendererRegistryEntry[];
            config: any;
            enabled: NonNullable<boolean | undefined>;
            path: string;
            renderers: JsonFormsRendererRegistryEntry[];
            schema: NonNullable<JsonSchema | undefined>;
            uischema: NonNullable<UISchemaElement | undefined>;
            uischemas: JsonFormsUISchemaRegistryEntry[];
            visible: NonNullable<boolean | undefined>;
        }>;
        rootSchema: ComputedRef<NonNullable<JsonSchema>>;
    }, {}, {
        determinedRenderer(): any;
    }, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<{
        cells: {
            default: undefined;
            required: boolean;
            type: PropType<JsonFormsCellRendererRegistryEntry[]>;
        };
        config: {
            default: undefined;
            required: boolean;
            type: ObjectConstructor;
        };
        enabled: {
            default: undefined;
            required: false;
            type: BooleanConstructor;
        };
        path: {
            required: true;
            type: StringConstructor;
        };
        renderers: {
            default: undefined;
            required: boolean;
            type: PropType<JsonFormsRendererRegistryEntry[]>;
        };
        schema: {
            required: true;
            type: PropType<JsonSchema>;
        };
        uischema: {
            required: true;
            type: PropType<UISchemaElement>;
        };
    }>> & Readonly<{}>, {
        cells: JsonFormsCellRendererRegistryEntry[];
        config: Record<string, any>;
        enabled: boolean;
        renderers: JsonFormsRendererRegistryEntry[];
    }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
    VBtn: {
        __isFragment?: never;
        __isSuspense?: never;
        __isTeleport?: never;
        new (...args): CreateComponentPublicInstanceWithMixins<{
            block: boolean;
            density: Density;
            disabled: boolean;
            exact: boolean;
            flat: boolean;
            readonly: boolean;
            replace: boolean;
            ripple: boolean | {
                class?: string;
                keys?: number[];
            } | undefined;
            size: string | number;
            slim: boolean;
            stacked: boolean;
            style: StyleValue;
            symbol: any;
            tag: string | JSXComponent;
            tile: boolean;
            variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
        } & {
            active?: boolean;
            activeColor?: string;
            appendIcon?: IconValue;
            baseColor?: string;
            border?: string | number | boolean;
            class?: any;
            color?: string;
            elevation?: string | number;
            height?: string | number;
            href?: string;
            icon?: boolean | IconValue;
            loading?: string | boolean;
            location?: Anchor | null;
            maxHeight?: string | number;
            maxWidth?: string | number;
            minHeight?: string | number;
            minWidth?: string | number;
            position?: "fixed" | "absolute" | "relative" | "static" | "sticky";
            prependIcon?: IconValue;
            rounded?: string | number | boolean;
            selectedClass?: string;
            text?: string | number | boolean;
            theme?: string;
            to?: string | ObjectRenderer | ObjectRenderer;
            value?: any;
            width?: string | number;
        } & {
            $children?: VNodeChild | (() => VNodeChild) | {
                append?: ...;
                default?: ...;
                loader?: ...;
                prepend?: ...;
            };
            v-slots?: {
                append?: false | (...);
                default?: false | (...);
                loader?: false | (...);
                prepend?: false | (...);
            };
        } & {
            v-slot:append?: false | (() => VNodeChild);
            v-slot:default?: false | (() => VNodeChild);
            v-slot:loader?: false | (() => VNodeChild);
            v-slot:prepend?: false | (() => VNodeChild);
        } & {
            onGroup:selected?: ((val) => any);
        }, {
            group: GroupItemProvide | null;
        }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
            group:selected: ((val) => true);
        }, VNodeProps & AllowedComponentProps & ComponentCustomProps, {
            active: boolean;
            block: boolean;
            density: Density;
            disabled: boolean;
            exact: boolean;
            flat: boolean;
            readonly: boolean;
            replace: boolean;
            ripple: boolean | {
                class?: string;
                keys?: number[];
            } | undefined;
            rounded: string | number | boolean;
            size: string | number;
            slim: boolean;
            stacked: boolean;
            style: StyleValue;
            symbol: any;
            tag: string | JSXComponent;
            text: string | number | boolean;
            tile: boolean;
            variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
        }, true, {}, SlotsType<Partial<{
            append: (() => VNode[]);
            default: (() => VNode[]);
            loader: (() => VNode[]);
            prepend: (() => VNode[]);
        }>>, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
            B: {};
            C: {};
            D: {};
            Defaults: {};
            M: {};
            P: {};
        }, {
            block: boolean;
            density: Density;
            disabled: boolean;
            exact: boolean;
            flat: boolean;
            readonly: boolean;
            replace: boolean;
            ripple: boolean | {
                class?: string;
                keys?: number[];
            } | undefined;
            size: string | number;
            slim: boolean;
            stacked: boolean;
            style: StyleValue;
            symbol: any;
            tag: string | JSXComponent;
            tile: boolean;
            variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
        } & {
            active?: boolean;
            activeColor?: string;
            appendIcon?: IconValue;
            baseColor?: string;
            border?: string | number | boolean;
            class?: any;
            color?: string;
            elevation?: string | number;
            height?: string | number;
            href?: string;
            icon?: boolean | IconValue;
            loading?: string | boolean;
            location?: Anchor | null;
            maxHeight?: string | number;
            maxWidth?: string | number;
            minHeight?: string | number;
            minWidth?: string | number;
            position?: "fixed" | "absolute" | "relative" | "static" | "sticky";
            prependIcon?: IconValue;
            rounded?: string | number | boolean;
            selectedClass?: string;
            text?: string | number | boolean;
            theme?: string;
            to?: string | ObjectRenderer | ObjectRenderer;
            value?: any;
            width?: string | number;
        } & {
            $children?: VNodeChild | (() => VNodeChild) | {
                append?: ...;
                default?: ...;
                loader?: ...;
                prepend?: ...;
            };
            v-slots?: {
                append?: false | (...);
                default?: false | (...);
                loader?: false | (...);
                prepend?: false | (...);
            };
        } & {
            v-slot:append?: false | (() => VNodeChild);
            v-slot:default?: false | (() => VNodeChild);
            v-slot:loader?: false | (() => VNodeChild);
            v-slot:prepend?: false | (() => VNodeChild);
        } & {
            onGroup:selected?: ((val) => any);
        }, {
            group: GroupItemProvide | null;
        }, {}, {}, {}, {
            active: boolean;
            block: boolean;
            density: Density;
            disabled: boolean;
            exact: boolean;
            flat: boolean;
            readonly: boolean;
            replace: boolean;
            ripple: boolean | {
                class?: string;
                keys?: number[];
            } | undefined;
            rounded: string | number | boolean;
            size: string | number;
            slim: boolean;
            stacked: boolean;
            style: StyleValue;
            symbol: any;
            tag: string | JSXComponent;
            text: string | number | boolean;
            tile: boolean;
            variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
        }>;
    } & ComponentOptionsBase<{
        block: boolean;
        density: Density;
        disabled: boolean;
        exact: boolean;
        flat: boolean;
        readonly: boolean;
        replace: boolean;
        ripple: boolean | {
            class?: string;
            keys?: number[];
        } | undefined;
        size: string | number;
        slim: boolean;
        stacked: boolean;
        style: StyleValue;
        symbol: any;
        tag: string | JSXComponent;
        tile: boolean;
        variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
    } & {
        active?: boolean;
        activeColor?: string;
        appendIcon?: IconValue;
        baseColor?: string;
        border?: string | number | boolean;
        class?: any;
        color?: string;
        elevation?: string | number;
        height?: string | number;
        href?: string;
        icon?: boolean | IconValue;
        loading?: string | boolean;
        location?: Anchor | null;
        maxHeight?: string | number;
        maxWidth?: string | number;
        minHeight?: string | number;
        minWidth?: string | number;
        position?: "fixed" | "absolute" | "relative" | "static" | "sticky";
        prependIcon?: IconValue;
        rounded?: string | number | boolean;
        selectedClass?: string;
        text?: string | number | boolean;
        theme?: string;
        to?: string | ObjectRenderer | ObjectRenderer;
        value?: any;
        width?: string | number;
    } & {
        $children?: VNodeChild | (() => VNodeChild) | {
            append?: (() => ...);
            default?: (() => ...);
            loader?: (() => ...);
            prepend?: (() => ...);
        };
        v-slots?: {
            append?: false | (() => ...);
            default?: false | (() => ...);
            loader?: false | (() => ...);
            prepend?: false | (() => ...);
        };
    } & {
        v-slot:append?: false | (() => VNodeChild);
        v-slot:default?: false | (() => VNodeChild);
        v-slot:loader?: false | (() => VNodeChild);
        v-slot:prepend?: false | (() => VNodeChild);
    } & {
        onGroup:selected?: ((val) => any);
    }, {
        group: GroupItemProvide | null;
    }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
        group:selected: ((val) => true);
    }, string, {
        active: boolean;
        block: boolean;
        density: Density;
        disabled: boolean;
        exact: boolean;
        flat: boolean;
        readonly: boolean;
        replace: boolean;
        ripple: boolean | {
            class?: string;
            keys?: number[];
        } | undefined;
        rounded: string | number | boolean;
        size: string | number;
        slim: boolean;
        stacked: boolean;
        style: StyleValue;
        symbol: any;
        tag: string | JSXComponent;
        text: string | number | boolean;
        tile: boolean;
        variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
    }, {}, string, SlotsType<Partial<{
        append: (() => VNode[]);
        default: (() => VNode[]);
        loader: (() => VNode[]);
        prepend: (() => VNode[]);
    }>>, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & FilterPropsOptions<{
        active: {
            default: undefined;
            type: BooleanConstructor;
        };
        activeColor: StringConstructor;
        appendIcon: PropType<IconValue>;
        baseColor: StringConstructor;
        block: BooleanConstructor;
        border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
        class: PropType<ClassValue>;
        color: StringConstructor;
        density: {
            default: string;
            type: PropType<Density>;
            validator: ((v) => boolean);
        };
        disabled: BooleanConstructor;
        elevation: {
            type: (StringConstructor | NumberConstructor)[];
            validator(v): boolean;
        };
        exact: BooleanConstructor;
        flat: BooleanConstructor;
        height: (StringConstructor | NumberConstructor)[];
        href: StringConstructor;
        icon: PropType<boolean | IconValue>;
        loading: (StringConstructor | BooleanConstructor)[];
        location: PropType<Anchor | null>;
        maxHeight: (StringConstructor | NumberConstructor)[];
        maxWidth: (StringConstructor | NumberConstructor)[];
        minHeight: (StringConstructor | NumberConstructor)[];
        minWidth: (StringConstructor | NumberConstructor)[];
        position: {
            type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
            validator: ((v) => boolean);
        };
        prependIcon: PropType<IconValue>;
        readonly: BooleanConstructor;
        replace: BooleanConstructor;
        ripple: {
            default: boolean;
            type: PropType<RippleDirectiveBinding["value"]>;
        };
        rounded: {
            default: undefined;
            type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
        };
        selectedClass: StringConstructor;
        size: {
            default: string;
            type: (StringConstructor | NumberConstructor)[];
        };
        slim: BooleanConstructor;
        stacked: BooleanConstructor;
        style: {
            default: null;
            type: PropType<StyleValue>;
        };
        symbol: {
            default: InjectionKey<GroupProvide>;
            type: null;
        };
        tag: Omit<{
            default: string;
            type: PropType<string | JSXComponent>;
        }, "type" | "default"> & {
            default: NonNullable<string | JSXComponent>;
            type: PropType<string | JSXComponent>;
        };
        text: {
            default: undefined;
            type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
        };
        theme: StringConstructor;
        tile: BooleanConstructor;
        to: PropType<ObjectRenderer>;
        value: null;
        variant: Omit<{
            default: string;
            type: PropType<Variant>;
            validator: ((v) => boolean);
        }, "type" | "default"> & {
            default: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
            type: PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
        };
        width: (StringConstructor | NumberConstructor)[];
    }, ExtractPropTypes<{
        active: {
            default: undefined;
            type: BooleanConstructor;
        };
        activeColor: StringConstructor;
        appendIcon: PropType<IconValue>;
        baseColor: StringConstructor;
        block: BooleanConstructor;
        border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
        class: PropType<ClassValue>;
        color: StringConstructor;
        density: {
            default: string;
            type: PropType<Density>;
            validator: ((v) => boolean);
        };
        disabled: BooleanConstructor;
        elevation: {
            type: (StringConstructor | NumberConstructor)[];
            validator(v): boolean;
        };
        exact: BooleanConstructor;
        flat: BooleanConstructor;
        height: (StringConstructor | NumberConstructor)[];
        href: StringConstructor;
        icon: PropType<boolean | IconValue>;
        loading: (StringConstructor | BooleanConstructor)[];
        location: PropType<Anchor | null>;
        maxHeight: (StringConstructor | NumberConstructor)[];
        maxWidth: (StringConstructor | NumberConstructor)[];
        minHeight: (StringConstructor | NumberConstructor)[];
        minWidth: (StringConstructor | NumberConstructor)[];
        position: {
            type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
            validator: ((v) => boolean);
        };
        prependIcon: PropType<IconValue>;
        readonly: BooleanConstructor;
        replace: BooleanConstructor;
        ripple: {
            default: boolean;
            type: PropType<RippleDirectiveBinding["value"]>;
        };
        rounded: {
            default: undefined;
            type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
        };
        selectedClass: StringConstructor;
        size: {
            default: string;
            type: (StringConstructor | NumberConstructor)[];
        };
        slim: BooleanConstructor;
        stacked: BooleanConstructor;
        style: {
            default: null;
            type: PropType<StyleValue>;
        };
        symbol: {
            default: InjectionKey<GroupProvide>;
            type: null;
        };
        tag: Omit<{
            default: string;
            type: PropType<(...) | (...)>;
        }, "type" | "default"> & {
            default: NonNullable<string | JSXComponent>;
            type: PropType<string | JSXComponent>;
        };
        text: {
            default: undefined;
            type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
        };
        theme: StringConstructor;
        tile: BooleanConstructor;
        to: PropType<ObjectRenderer>;
        value: null;
        variant: Omit<{
            default: string;
            type: PropType<Variant>;
            validator: ((v) => boolean);
        }, "type" | "default"> & {
            default: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
            type: PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
        };
        width: (StringConstructor | NumberConstructor)[];
    }>>;
    VCard: {
        __isFragment?: never;
        __isSuspense?: never;
        __isTeleport?: never;
        new (...args): CreateComponentPublicInstanceWithMixins<{
            density: Density;
            disabled: boolean;
            exact: boolean;
            flat: boolean;
            hover: boolean;
            replace: boolean;
            ripple: boolean | {
                class?: string;
                keys?: number[];
            } | undefined;
            style: StyleValue;
            tag: string | JSXComponent;
            tile: boolean;
            variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
        } & {
            appendAvatar?: string;
            appendIcon?: IconValue;
            border?: string | number | boolean;
            class?: any;
            color?: string;
            elevation?: string | number;
            height?: string | number;
            href?: string;
            image?: string;
            link?: boolean;
            loading?: string | boolean;
            location?: Anchor | null;
            maxHeight?: string | number;
            maxWidth?: string | number;
            minHeight?: string | number;
            minWidth?: string | number;
            position?: "fixed" | "absolute" | "relative" | "static" | "sticky";
            prependAvatar?: string;
            prependIcon?: IconValue;
            rounded?: string | number | boolean;
            subtitle?: string | number | boolean;
            text?: string | number | boolean;
            theme?: string;
            title?: string | number | boolean;
            to?: string | ObjectRenderer | ObjectRenderer;
            width?: string | number;
        } & {
            $children?: VNodeChild | (() => VNodeChild) | {
                actions?: ...;
                append?: ...;
                default?: ...;
                image?: ...;
                item?: ...;
                loader?: ...;
                prepend?: ...;
                subtitle?: ...;
                text?: ...;
                title?: ...;
            };
            v-slots?: {
                actions?: false | (...);
                append?: false | (...);
                default?: false | (...);
                image?: false | (...);
                item?: false | (...);
                loader?: false | (...);
                prepend?: false | (...);
                subtitle?: false | (...);
                text?: false | (...);
                title?: false | (...);
            };
        } & {
            v-slot:actions?: false | (() => VNodeChild);
            v-slot:append?: false | (() => VNodeChild);
            v-slot:default?: false | (() => VNodeChild);
            v-slot:image?: false | (() => VNodeChild);
            v-slot:item?: false | (() => VNodeChild);
            v-slot:loader?: false | ((arg) => VNodeChild);
            v-slot:prepend?: false | (() => VNodeChild);
            v-slot:subtitle?: false | (() => VNodeChild);
            v-slot:text?: false | (() => VNodeChild);
            v-slot:title?: false | (() => VNodeChild);
        }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, VNodeProps & AllowedComponentProps & ComponentCustomProps, {
            density: Density;
            disabled: boolean;
            exact: boolean;
            flat: boolean;
            hover: boolean;
            link: boolean;
            replace: boolean;
            ripple: boolean | {
                class?: string;
                keys?: number[];
            } | undefined;
            rounded: string | number | boolean;
            style: StyleValue;
            subtitle: string | number | boolean;
            tag: string | JSXComponent;
            text: string | number | boolean;
            tile: boolean;
            title: string | number | boolean;
            variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
        }, true, {}, SlotsType<Partial<{
            actions: (() => VNode[]);
            append: (() => VNode[]);
            default: (() => VNode[]);
            image: (() => VNode[]);
            item: (() => VNode[]);
            loader: ((arg) => VNode[]);
            prepend: (() => VNode[]);
            subtitle: (() => VNode[]);
            text: (() => VNode[]);
            title: (() => VNode[]);
        }>>, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
            B: {};
            C: {};
            D: {};
            Defaults: {};
            M: {};
            P: {};
        }, {
            density: Density;
            disabled: boolean;
            exact: boolean;
            flat: boolean;
            hover: boolean;
            replace: boolean;
            ripple: boolean | {
                class?: string;
                keys?: number[];
            } | undefined;
            style: StyleValue;
            tag: string | JSXComponent;
            tile: boolean;
            variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
        } & {
            appendAvatar?: string;
            appendIcon?: IconValue;
            border?: string | number | boolean;
            class?: any;
            color?: string;
            elevation?: string | number;
            height?: string | number;
            href?: string;
            image?: string;
            link?: boolean;
            loading?: string | boolean;
            location?: Anchor | null;
            maxHeight?: string | number;
            maxWidth?: string | number;
            minHeight?: string | number;
            minWidth?: string | number;
            position?: "fixed" | "absolute" | "relative" | "static" | "sticky";
            prependAvatar?: string;
            prependIcon?: IconValue;
            rounded?: string | number | boolean;
            subtitle?: string | number | boolean;
            text?: string | number | boolean;
            theme?: string;
            title?: string | number | boolean;
            to?: string | ObjectRenderer | ObjectRenderer;
            width?: string | number;
        } & {
            $children?: VNodeChild | (() => VNodeChild) | {
                actions?: ...;
                append?: ...;
                default?: ...;
                image?: ...;
                item?: ...;
                loader?: ...;
                prepend?: ...;
                subtitle?: ...;
                text?: ...;
                title?: ...;
            };
            v-slots?: {
                actions?: false | (...);
                append?: false | (...);
                default?: false | (...);
                image?: false | (...);
                item?: false | (...);
                loader?: false | (...);
                prepend?: false | (...);
                subtitle?: false | (...);
                text?: false | (...);
                title?: false | (...);
            };
        } & {
            v-slot:actions?: false | (() => VNodeChild);
            v-slot:append?: false | (() => VNodeChild);
            v-slot:default?: false | (() => VNodeChild);
            v-slot:image?: false | (() => VNodeChild);
            v-slot:item?: false | (() => VNodeChild);
            v-slot:loader?: false | ((arg) => VNodeChild);
            v-slot:prepend?: false | (() => VNodeChild);
            v-slot:subtitle?: false | (() => VNodeChild);
            v-slot:text?: false | (() => VNodeChild);
            v-slot:title?: false | (() => VNodeChild);
        }, {}, {}, {}, {}, {
            density: Density;
            disabled: boolean;
            exact: boolean;
            flat: boolean;
            hover: boolean;
            link: boolean;
            replace: boolean;
            ripple: boolean | {
                class?: string;
                keys?: number[];
            } | undefined;
            rounded: string | number | boolean;
            style: StyleValue;
            subtitle: string | number | boolean;
            tag: string | JSXComponent;
            text: string | number | boolean;
            tile: boolean;
            title: string | number | boolean;
            variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
        }>;
    } & ComponentOptionsBase<{
        density: Density;
        disabled: boolean;
        exact: boolean;
        flat: boolean;
        hover: boolean;
        replace: boolean;
        ripple: boolean | {
            class?: string;
            keys?: number[];
        } | undefined;
        style: StyleValue;
        tag: string | JSXComponent;
        tile: boolean;
        variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
    } & {
        appendAvatar?: string;
        appendIcon?: IconValue;
        border?: string | number | boolean;
        class?: any;
        color?: string;
        elevation?: string | number;
        height?: string | number;
        href?: string;
        image?: string;
        link?: boolean;
        loading?: string | boolean;
        location?: Anchor | null;
        maxHeight?: string | number;
        maxWidth?: string | number;
        minHeight?: string | number;
        minWidth?: string | number;
        position?: "fixed" | "absolute" | "relative" | "static" | "sticky";
        prependAvatar?: string;
        prependIcon?: IconValue;
        rounded?: string | number | boolean;
        subtitle?: string | number | boolean;
        text?: string | number | boolean;
        theme?: string;
        title?: string | number | boolean;
        to?: string | ObjectRenderer | ObjectRenderer;
        width?: string | number;
    } & {
        $children?: VNodeChild | (() => VNodeChild) | {
            actions?: (() => ...);
            append?: (() => ...);
            default?: (() => ...);
            image?: (() => ...);
            item?: (() => ...);
            loader?: ((arg) => ...);
            prepend?: (() => ...);
            subtitle?: (() => ...);
            text?: (() => ...);
            title?: (() => ...);
        };
        v-slots?: {
            actions?: false | (() => ...);
            append?: false | (() => ...);
            default?: false | (() => ...);
            image?: false | (() => ...);
            item?: false | (() => ...);
            loader?: false | ((arg) => ...);
            prepend?: false | (() => ...);
            subtitle?: false | (() => ...);
            text?: false | (() => ...);
            title?: false | (() => ...);
        };
    } & {
        v-slot:actions?: false | (() => VNodeChild);
        v-slot:append?: false | (() => VNodeChild);
        v-slot:default?: false | (() => VNodeChild);
        v-slot:image?: false | (() => VNodeChild);
        v-slot:item?: false | (() => VNodeChild);
        v-slot:loader?: false | ((arg) => VNodeChild);
        v-slot:prepend?: false | (() => VNodeChild);
        v-slot:subtitle?: false | (() => VNodeChild);
        v-slot:text?: false | (() => VNodeChild);
        v-slot:title?: false | (() => VNodeChild);
    }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, {
        density: Density;
        disabled: boolean;
        exact: boolean;
        flat: boolean;
        hover: boolean;
        link: boolean;
        replace: boolean;
        ripple: boolean | {
            class?: string;
            keys?: number[];
        } | undefined;
        rounded: string | number | boolean;
        style: StyleValue;
        subtitle: string | number | boolean;
        tag: string | JSXComponent;
        text: string | number | boolean;
        tile: boolean;
        title: string | number | boolean;
        variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
    }, {}, string, SlotsType<Partial<{
        actions: (() => VNode[]);
        append: (() => VNode[]);
        default: (() => VNode[]);
        image: (() => VNode[]);
        item: (() => VNode[]);
        loader: ((arg) => VNode[]);
        prepend: (() => VNode[]);
        subtitle: (() => VNode[]);
        text: (() => VNode[]);
        title: (() => VNode[]);
    }>>, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & FilterPropsOptions<{
        appendAvatar: StringConstructor;
        appendIcon: PropType<IconValue>;
        border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
        class: PropType<ClassValue>;
        color: StringConstructor;
        density: {
            default: string;
            type: PropType<Density>;
            validator: ((v) => boolean);
        };
        disabled: BooleanConstructor;
        elevation: {
            type: (StringConstructor | NumberConstructor)[];
            validator(v): boolean;
        };
        exact: BooleanConstructor;
        flat: BooleanConstructor;
        height: (StringConstructor | NumberConstructor)[];
        hover: BooleanConstructor;
        href: StringConstructor;
        image: StringConstructor;
        link: {
            default: undefined;
            type: BooleanConstructor;
        };
        loading: (StringConstructor | BooleanConstructor)[];
        location: PropType<Anchor | null>;
        maxHeight: (StringConstructor | NumberConstructor)[];
        maxWidth: (StringConstructor | NumberConstructor)[];
        minHeight: (StringConstructor | NumberConstructor)[];
        minWidth: (StringConstructor | NumberConstructor)[];
        position: {
            type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
            validator: ((v) => boolean);
        };
        prependAvatar: StringConstructor;
        prependIcon: PropType<IconValue>;
        replace: BooleanConstructor;
        ripple: {
            default: boolean;
            type: PropType<RippleDirectiveBinding["value"]>;
        };
        rounded: {
            default: undefined;
            type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
        };
        style: {
            default: null;
            type: PropType<StyleValue>;
        };
        subtitle: {
            default: undefined;
            type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
        };
        tag: {
            default: string;
            type: PropType<string | JSXComponent>;
        };
        text: {
            default: undefined;
            type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
        };
        theme: StringConstructor;
        tile: BooleanConstructor;
        title: {
            default: undefined;
            type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
        };
        to: PropType<ObjectRenderer>;
        variant: Omit<{
            default: string;
            type: PropType<Variant>;
            validator: ((v) => boolean);
        }, "type" | "default"> & {
            default: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
            type: PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
        };
        width: (StringConstructor | NumberConstructor)[];
    }, ExtractPropTypes<{
        appendAvatar: StringConstructor;
        appendIcon: PropType<IconValue>;
        border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
        class: PropType<ClassValue>;
        color: StringConstructor;
        density: {
            default: string;
            type: PropType<Density>;
            validator: ((v) => boolean);
        };
        disabled: BooleanConstructor;
        elevation: {
            type: (StringConstructor | NumberConstructor)[];
            validator(v): boolean;
        };
        exact: BooleanConstructor;
        flat: BooleanConstructor;
        height: (StringConstructor | NumberConstructor)[];
        hover: BooleanConstructor;
        href: StringConstructor;
        image: StringConstructor;
        link: {
            default: undefined;
            type: BooleanConstructor;
        };
        loading: (StringConstructor | BooleanConstructor)[];
        location: PropType<Anchor | null>;
        maxHeight: (StringConstructor | NumberConstructor)[];
        maxWidth: (StringConstructor | NumberConstructor)[];
        minHeight: (StringConstructor | NumberConstructor)[];
        minWidth: (StringConstructor | NumberConstructor)[];
        position: {
            type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
            validator: ((v) => boolean);
        };
        prependAvatar: StringConstructor;
        prependIcon: PropType<IconValue>;
        replace: BooleanConstructor;
        ripple: {
            default: boolean;
            type: PropType<RippleDirectiveBinding["value"]>;
        };
        rounded: {
            default: undefined;
            type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
        };
        style: {
            default: null;
            type: PropType<StyleValue>;
        };
        subtitle: {
            default: undefined;
            type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
        };
        tag: {
            default: string;
            type: PropType<string | JSXComponent>;
        };
        text: {
            default: undefined;
            type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
        };
        theme: StringConstructor;
        tile: BooleanConstructor;
        title: {
            default: undefined;
            type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
        };
        to: PropType<ObjectRenderer>;
        variant: Omit<{
            default: string;
            type: PropType<Variant>;
            validator: ((v) => boolean);
        }, "type" | "default"> & {
            default: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
            type: PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
        };
        width: (StringConstructor | NumberConstructor)[];
    }>>;
    VCardText: {
        __isFragment?: never;
        __isSuspense?: never;
        __isTeleport?: never;
        new (...args): CreateComponentPublicInstanceWithMixins<{
            style: StyleValue;
            tag: string | JSXComponent;
        } & {
            class?: any;
            opacity?: string | number;
        } & {
            $children?: VNodeChild | {
                default?: ...;
            } | (() => VNodeChild);
            v-slots?: {
                default?: false | (...);
            };
        } & {
            v-slot:default?: false | (() => VNodeChild);
        }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, VNodeProps & AllowedComponentProps & ComponentCustomProps, {
            style: StyleValue;
            tag: string | JSXComponent;
        }, true, {}, SlotsType<Partial<{
            default: (() => VNode[]);
        }>>, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
            B: {};
            C: {};
            D: {};
            Defaults: {};
            M: {};
            P: {};
        }, {
            style: StyleValue;
            tag: string | JSXComponent;
        } & {
            class?: any;
            opacity?: string | number;
        } & {
            $children?: VNodeChild | {
                default?: ...;
            } | (() => VNodeChild);
            v-slots?: {
                default?: false | (...);
            };
        } & {
            v-slot:default?: false | (() => VNodeChild);
        }, {}, {}, {}, {}, {
            style: StyleValue;
            tag: string | JSXComponent;
        }>;
    } & ComponentOptionsBase<{
        style: StyleValue;
        tag: string | JSXComponent;
    } & {
        class?: any;
        opacity?: string | number;
    } & {
        $children?: VNodeChild | {
            default?: (() => ...);
        } | (() => VNodeChild);
        v-slots?: {
            default?: false | (() => ...);
        };
    } & {
        v-slot:default?: false | (() => VNodeChild);
    }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, {
        style: StyleValue;
        tag: string | JSXComponent;
    }, {}, string, SlotsType<Partial<{
        default: (() => VNode[]);
    }>>, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & FilterPropsOptions<{
        class: PropType<ClassValue>;
        opacity: (StringConstructor | NumberConstructor)[];
        style: {
            default: null;
            type: PropType<StyleValue>;
        };
        tag: {
            default: string;
            type: PropType<string | JSXComponent>;
        };
    }, ExtractPropTypes<{
        class: PropType<ClassValue>;
        opacity: (StringConstructor | NumberConstructor)[];
        style: {
            default: null;
            type: PropType<StyleValue>;
        };
        tag: {
            default: string;
            type: PropType<string | JSXComponent>;
        };
    }>>;
    VCardTitle: {
        __isFragment?: never;
        __isSuspense?: never;
        __isTeleport?: never;
        new (...args): CreateComponentPublicInstanceWithMixins<{
            style: StyleValue;
            tag: string;
        } & {
            class?: any;
        } & {
            $children?: VNodeChild | {
                default?: ...;
            } | (() => VNodeChild);
            v-slots?: {
                default?: false | (...);
            };
        } & {
            v-slot:default?: false | (() => VNodeChild);
        }, (() => VNode<RendererNode, RendererElement, {
            [key: string]: any;
        }>), unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, VNodeProps & AllowedComponentProps & ComponentCustomProps, {
            style: StyleValue;
            tag: string;
        }, true, {}, SlotsType<Partial<{
            default: (() => VNode[]);
        }>>, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
            B: {};
            C: {};
            D: {};
            Defaults: {};
            M: {};
            P: {};
        }, {
            style: StyleValue;
            tag: string;
        } & {
            class?: any;
        } & {
            $children?: VNodeChild | {
                default?: ...;
            } | (() => VNodeChild);
            v-slots?: {
                default?: false | (...);
            };
        } & {
            v-slot:default?: false | (() => VNodeChild);
        }, (() => VNode<RendererNode, RendererElement, {
            [key: string]: any;
        }>), {}, {}, {}, {
            style: StyleValue;
            tag: string;
        }>;
    } & ComponentOptionsBase<{
        style: StyleValue;
        tag: string;
    } & {
        class?: any;
    } & {
        $children?: VNodeChild | {
            default?: (() => ...);
        } | (() => VNodeChild);
        v-slots?: {
            default?: false | (() => ...);
        };
    } & {
        v-slot:default?: false | (() => VNodeChild);
    }, (() => VNode<RendererNode, RendererElement, {
        [key: string]: any;
    }>), unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, {
        style: StyleValue;
        tag: string;
    }, {}, string, SlotsType<Partial<{
        default: (() => VNode[]);
    }>>, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & FilterPropsOptions<{
        class: PropType<ClassValue>;
        style: {
            default: null;
            type: PropType<StyleValue>;
        };
        tag: {
            default: string;
            type: StringConstructor;
        };
    }, ExtractPropTypes<{
        class: PropType<ClassValue>;
        style: {
            default: null;
            type: PropType<StyleValue>;
        };
        tag: {
            default: string;
            type: StringConstructor;
        };
    }>>;
    VContainer: {
        __isFragment?: never;
        __isSuspense?: never;
        __isTeleport?: never;
        new (...args): CreateComponentPublicInstanceWithMixins<{
            fluid: boolean;
            style: StyleValue;
            tag: string | JSXComponent;
        } & {
            class?: any;
            height?: string | number;
            maxHeight?: string | number;
            maxWidth?: string | number;
            minHeight?: string | number;
            minWidth?: string | number;
            width?: string | number;
        } & {
            $children?: VNodeChild | {
                default?: ...;
            } | (() => VNodeChild);
            v-slots?: {
                default?: false | (...);
            };
        } & {
            v-slot:default?: false | (() => VNodeChild);
        }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, VNodeProps & AllowedComponentProps & ComponentCustomProps, {
            fluid: boolean;
            style: StyleValue;
            tag: string | JSXComponent;
        }, true, {}, SlotsType<Partial<{
            default: (() => VNode[]);
        }>>, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
            B: {};
            C: {};
            D: {};
            Defaults: {};
            M: {};
            P: {};
        }, {
            fluid: boolean;
            style: StyleValue;
            tag: string | JSXComponent;
        } & {
            class?: any;
            height?: string | number;
            maxHeight?: string | number;
            maxWidth?: string | number;
            minHeight?: string | number;
            minWidth?: string | number;
            width?: string | number;
        } & {
            $children?: VNodeChild | {
                default?: ...;
            } | (() => VNodeChild);
            v-slots?: {
                default?: false | (...);
            };
        } & {
            v-slot:default?: false | (() => VNodeChild);
        }, {}, {}, {}, {}, {
            fluid: boolean;
            style: StyleValue;
            tag: string | JSXComponent;
        }>;
    } & ComponentOptionsBase<{
        fluid: boolean;
        style: StyleValue;
        tag: string | JSXComponent;
    } & {
        class?: any;
        height?: string | number;
        maxHeight?: string | number;
        maxWidth?: string | number;
        minHeight?: string | number;
        minWidth?: string | number;
        width?: string | number;
    } & {
        $children?: VNodeChild | {
            default?: (() => ...);
        } | (() => VNodeChild);
        v-slots?: {
            default?: false | (() => ...);
        };
    } & {
        v-slot:default?: false | (() => VNodeChild);
    }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, {
        fluid: boolean;
        style: StyleValue;
        tag: string | JSXComponent;
    }, {}, string, SlotsType<Partial<{
        default: (() => VNode[]);
    }>>, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & FilterPropsOptions<{
        class: PropType<ClassValue>;
        fluid: {
            default: boolean;
            type: BooleanConstructor;
        };
        height: (StringConstructor | NumberConstructor)[];
        maxHeight: (StringConstructor | NumberConstructor)[];
        maxWidth: (StringConstructor | NumberConstructor)[];
        minHeight: (StringConstructor | NumberConstructor)[];
        minWidth: (StringConstructor | NumberConstructor)[];
        style: {
            default: null;
            type: PropType<StyleValue>;
        };
        tag: {
            default: string;
            type: PropType<string | JSXComponent>;
        };
        width: (StringConstructor | NumberConstructor)[];
    }, ExtractPropTypes<{
        class: PropType<ClassValue>;
        fluid: {
            default: boolean;
            type: BooleanConstructor;
        };
        height: (StringConstructor | NumberConstructor)[];
        maxHeight: (StringConstructor | NumberConstructor)[];
        maxWidth: (StringConstructor | NumberConstructor)[];
        minHeight: (StringConstructor | NumberConstructor)[];
        minWidth: (StringConstructor | NumberConstructor)[];
        style: {
            default: null;
            type: PropType<StyleValue>;
        };
        tag: {
            default: string;
            type: PropType<string | JSXComponent>;
        };
        width: (StringConstructor | NumberConstructor)[];
    }>>;
    VIcon: {
        __isFragment?: never;
        __isSuspense?: never;
        __isTeleport?: never;
        new (...args): CreateComponentPublicInstanceWithMixins<{
            disabled: boolean;
            end: boolean;
            size: string | number;
            start: boolean;
            style: StyleValue;
            tag: string | JSXComponent;
        } & {
            class?: any;
            color?: string;
            icon?: IconValue;
            opacity?: string | number;
            theme?: string;
        } & {
            $children?: VNodeChild | {
                default?: ...;
            } | (() => VNodeChild);
            v-slots?: {
                default?: false | (...);
            };
        } & {
            v-slot:default?: false | (() => VNodeChild);
        }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, VNodeProps & AllowedComponentProps & ComponentCustomProps, {
            disabled: boolean;
            end: boolean;
            size: string | number;
            start: boolean;
            style: StyleValue;
            tag: string | JSXComponent;
        }, true, {}, SlotsType<Partial<{
            default: (() => VNode[]);
        }>>, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
            B: {};
            C: {};
            D: {};
            Defaults: {};
            M: {};
            P: {};
        }, {
            disabled: boolean;
            end: boolean;
            size: string | number;
            start: boolean;
            style: StyleValue;
            tag: string | JSXComponent;
        } & {
            class?: any;
            color?: string;
            icon?: IconValue;
            opacity?: string | number;
            theme?: string;
        } & {
            $children?: VNodeChild | {
                default?: ...;
            } | (() => VNodeChild);
            v-slots?: {
                default?: false | (...);
            };
        } & {
            v-slot:default?: false | (() => VNodeChild);
        }, {}, {}, {}, {}, {
            disabled: boolean;
            end: boolean;
            size: string | number;
            start: boolean;
            style: StyleValue;
            tag: string | JSXComponent;
        }>;
    } & ComponentOptionsBase<{
        disabled: boolean;
        end: boolean;
        size: string | number;
        start: boolean;
        style: StyleValue;
        tag: string | JSXComponent;
    } & {
        class?: any;
        color?: string;
        icon?: IconValue;
        opacity?: string | number;
        theme?: string;
    } & {
        $children?: VNodeChild | {
            default?: (() => ...);
        } | (() => VNodeChild);
        v-slots?: {
            default?: false | (() => ...);
        };
    } & {
        v-slot:default?: false | (() => VNodeChild);
    }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, {
        disabled: boolean;
        end: boolean;
        size: string | number;
        start: boolean;
        style: StyleValue;
        tag: string | JSXComponent;
    }, {}, string, SlotsType<Partial<{
        default: (() => VNode[]);
    }>>, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & FilterPropsOptions<{
        class: PropType<ClassValue>;
        color: StringConstructor;
        disabled: BooleanConstructor;
        end: BooleanConstructor;
        icon: PropType<IconValue>;
        opacity: (StringConstructor | NumberConstructor)[];
        size: {
            default: string;
            type: (StringConstructor | NumberConstructor)[];
        };
        start: BooleanConstructor;
        style: {
            default: null;
            type: PropType<StyleValue>;
        };
        tag: Omit<{
            default: string;
            type: PropType<string | JSXComponent>;
        }, "type" | "default"> & {
            default: NonNullable<string | JSXComponent>;
            type: PropType<string | JSXComponent>;
        };
        theme: StringConstructor;
    }, ExtractPropTypes<{
        class: PropType<ClassValue>;
        color: StringConstructor;
        disabled: BooleanConstructor;
        end: BooleanConstructor;
        icon: PropType<IconValue>;
        opacity: (StringConstructor | NumberConstructor)[];
        size: {
            default: string;
            type: (StringConstructor | NumberConstructor)[];
        };
        start: BooleanConstructor;
        style: {
            default: null;
            type: PropType<StyleValue>;
        };
        tag: Omit<{
            default: string;
            type: PropType<(...) | (...)>;
        }, "type" | "default"> & {
            default: NonNullable<string | JSXComponent>;
            type: PropType<string | JSXComponent>;
        };
        theme: StringConstructor;
    }>>;
    VRow: {
        __isFragment?: never;
        __isSuspense?: never;
        __isTeleport?: never;
        new (...args): CreateComponentPublicInstanceWithMixins<{
            align: "center" | "end" | "start" | "stretch" | "baseline";
            alignContent: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
            dense: boolean;
            justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
            noGutters: boolean;
            style: StyleValue;
            tag: string | JSXComponent;
        } & {
            alignContentLg?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
            alignContentMd?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
            alignContentSm?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
            alignContentXl?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
            alignContentXxl?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
            alignLg?: "center" | "end" | "start" | "stretch" | "baseline";
            alignMd?: "center" | "end" | "start" | "stretch" | "baseline";
            alignSm?: "center" | "end" | "start" | "stretch" | "baseline";
            alignXl?: "center" | "end" | "start" | "stretch" | "baseline";
            alignXxl?: "center" | "end" | "start" | "stretch" | "baseline";
            class?: any;
            justifyLg?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
            justifyMd?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
            justifySm?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
            justifyXl?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
            justifyXxl?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
        } & {
            $children?: VNodeChild | {
                default?: ...;
            } | (() => VNodeChild);
            v-slots?: {
                default?: false | (...);
            };
        } & {
            v-slot:default?: false | (() => VNodeChild);
        }, (() => VNode<RendererNode, RendererElement, {
            [key: string]: any;
        }>), unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, VNodeProps & AllowedComponentProps & ComponentCustomProps, {
            align: "center" | "end" | "start" | "stretch" | "baseline";
            alignContent: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
            dense: boolean;
            justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
            noGutters: boolean;
            style: StyleValue;
            tag: string | JSXComponent;
        }, true, {}, SlotsType<Partial<{
            default: (() => VNode[]);
        }>>, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
            B: {};
            C: {};
            D: {};
            Defaults: {};
            M: {};
            P: {};
        }, {
            align: "center" | "end" | "start" | "stretch" | "baseline";
            alignContent: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
            dense: boolean;
            justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
            noGutters: boolean;
            style: StyleValue;
            tag: string | JSXComponent;
        } & {
            alignContentLg?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
            alignContentMd?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
            alignContentSm?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
            alignContentXl?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
            alignContentXxl?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
            alignLg?: "center" | "end" | "start" | "stretch" | "baseline";
            alignMd?: "center" | "end" | "start" | "stretch" | "baseline";
            alignSm?: "center" | "end" | "start" | "stretch" | "baseline";
            alignXl?: "center" | "end" | "start" | "stretch" | "baseline";
            alignXxl?: "center" | "end" | "start" | "stretch" | "baseline";
            class?: any;
            justifyLg?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
            justifyMd?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
            justifySm?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
            justifyXl?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
            justifyXxl?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
        } & {
            $children?: VNodeChild | {
                default?: ...;
            } | (() => VNodeChild);
            v-slots?: {
                default?: false | (...);
            };
        } & {
            v-slot:default?: false | (() => VNodeChild);
        }, (() => VNode<RendererNode, RendererElement, {
            [key: string]: any;
        }>), {}, {}, {}, {
            align: "center" | "end" | "start" | "stretch" | "baseline";
            alignContent: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
            dense: boolean;
            justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
            noGutters: boolean;
            style: StyleValue;
            tag: string | JSXComponent;
        }>;
    } & ComponentOptionsBase<{
        align: "center" | "end" | "start" | "stretch" | "baseline";
        alignContent: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
        dense: boolean;
        justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
        noGutters: boolean;
        style: StyleValue;
        tag: string | JSXComponent;
    } & {
        alignContentLg?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
        alignContentMd?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
        alignContentSm?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
        alignContentXl?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
        alignContentXxl?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
        alignLg?: "center" | "end" | "start" | "stretch" | "baseline";
        alignMd?: "center" | "end" | "start" | "stretch" | "baseline";
        alignSm?: "center" | "end" | "start" | "stretch" | "baseline";
        alignXl?: "center" | "end" | "start" | "stretch" | "baseline";
        alignXxl?: "center" | "end" | "start" | "stretch" | "baseline";
        class?: any;
        justifyLg?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
        justifyMd?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
        justifySm?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
        justifyXl?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
        justifyXxl?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
    } & {
        $children?: VNodeChild | {
            default?: (() => ...);
        } | (() => VNodeChild);
        v-slots?: {
            default?: false | (() => ...);
        };
    } & {
        v-slot:default?: false | (() => VNodeChild);
    }, (() => VNode<RendererNode, RendererElement, {
        [key: string]: any;
    }>), unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, {
        align: "center" | "end" | "start" | "stretch" | "baseline";
        alignContent: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
        dense: boolean;
        justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
        noGutters: boolean;
        style: StyleValue;
        tag: string | JSXComponent;
    }, {}, string, SlotsType<Partial<{
        default: (() => VNode[]);
    }>>, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & FilterPropsOptions<{
        align: {
            default: null;
            type: PropType<ALIGN_VALUES[number]>;
            validator: ((str) => boolean);
        };
        alignContent: {
            default: null;
            type: PropType<ALIGN_CONTENT_VALUES[number]>;
            validator: ((str) => boolean);
        };
        alignContentLg: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch", null>;
        alignContentMd: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch", null>;
        alignContentSm: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch", null>;
        alignContentXl: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch", null>;
        alignContentXxl: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch", null>;
        alignLg: Prop<"center" | "end" | "start" | "stretch" | "baseline", null>;
        alignMd: Prop<"center" | "end" | "start" | "stretch" | "baseline", null>;
        alignSm: Prop<"center" | "end" | "start" | "stretch" | "baseline", null>;
        alignXl: Prop<"center" | "end" | "start" | "stretch" | "baseline", null>;
        alignXxl: Prop<"center" | "end" | "start" | "stretch" | "baseline", null>;
        class: PropType<ClassValue>;
        dense: BooleanConstructor;
        justify: {
            default: null;
            type: PropType<ALIGN_CONTENT_VALUES[number]>;
            validator: ((str) => boolean);
        };
        justifyLg: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly", null>;
        justifyMd: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly", null>;
        justifySm: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly", null>;
        justifyXl: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly", null>;
        justifyXxl: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly", null>;
        noGutters: BooleanConstructor;
        style: {
            default: null;
            type: PropType<StyleValue>;
        };
        tag: {
            default: string;
            type: PropType<string | JSXComponent>;
        };
    }, ExtractPropTypes<{
        align: {
            default: null;
            type: PropType<ALIGN_VALUES[number]>;
            validator: ((str) => boolean);
        };
        alignContent: {
            default: null;
            type: PropType<ALIGN_CONTENT_VALUES[number]>;
            validator: ((str) => boolean);
        };
        alignContentLg: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch", null>;
        alignContentMd: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch", null>;
        alignContentSm: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch", null>;
        alignContentXl: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch", null>;
        alignContentXxl: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch", null>;
        alignLg: Prop<"center" | "end" | "start" | "stretch" | "baseline", null>;
        alignMd: Prop<"center" | "end" | "start" | "stretch" | "baseline", null>;
        alignSm: Prop<"center" | "end" | "start" | "stretch" | "baseline", null>;
        alignXl: Prop<"center" | "end" | "start" | "stretch" | "baseline", null>;
        alignXxl: Prop<"center" | "end" | "start" | "stretch" | "baseline", null>;
        class: PropType<ClassValue>;
        dense: BooleanConstructor;
        justify: {
            default: null;
            type: PropType<ALIGN_CONTENT_VALUES[number]>;
            validator: ((str) => boolean);
        };
        justifyLg: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly", null>;
        justifyMd: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly", null>;
        justifySm: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly", null>;
        justifyXl: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly", null>;
        justifyXxl: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly", null>;
        noGutters: BooleanConstructor;
        style: {
            default: null;
            type: PropType<StyleValue>;
        };
        tag: {
            default: string;
            type: PropType<string | JSXComponent>;
        };
    }>>;
    VSpacer: {
        __isFragment?: never;
        __isSuspense?: never;
        __isTeleport?: never;
        new (...args): CreateComponentPublicInstanceWithMixins<{
            style: StyleValue;
            tag: string;
        } & {
            class?: any;
        } & {
            $children?: VNodeChild | {
                default?: ...;
            } | (() => VNodeChild);
            v-slots?: {
                default?: false | (...);
            };
        } & {
            v-slot:default?: false | (() => VNodeChild);
        }, (() => VNode<RendererNode, RendererElement, {
            [key: string]: any;
        }>), unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, VNodeProps & AllowedComponentProps & ComponentCustomProps, {
            style: StyleValue;
            tag: string;
        }, true, {}, SlotsType<Partial<{
            default: (() => VNode[]);
        }>>, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
            B: {};
            C: {};
            D: {};
            Defaults: {};
            M: {};
            P: {};
        }, {
            style: StyleValue;
            tag: string;
        } & {
            class?: any;
        } & {
            $children?: VNodeChild | {
                default?: ...;
            } | (() => VNodeChild);
            v-slots?: {
                default?: false | (...);
            };
        } & {
            v-slot:default?: false | (() => VNodeChild);
        }, (() => VNode<RendererNode, RendererElement, {
            [key: string]: any;
        }>), {}, {}, {}, {
            style: StyleValue;
            tag: string;
        }>;
    } & ComponentOptionsBase<{
        style: StyleValue;
        tag: string;
    } & {
        class?: any;
    } & {
        $children?: VNodeChild | {
            default?: (() => ...);
        } | (() => VNodeChild);
        v-slots?: {
            default?: false | (() => ...);
        };
    } & {
        v-slot:default?: false | (() => VNodeChild);
    }, (() => VNode<RendererNode, RendererElement, {
        [key: string]: any;
    }>), unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, {
        style: StyleValue;
        tag: string;
    }, {}, string, SlotsType<Partial<{
        default: (() => VNode[]);
    }>>, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & FilterPropsOptions<{
        class: PropType<ClassValue>;
        style: {
            default: null;
            type: PropType<StyleValue>;
        };
        tag: {
            default: string;
            type: StringConstructor;
        };
    }, ExtractPropTypes<{
        class: PropType<ClassValue>;
        style: {
            default: null;
            type: PropType<StyleValue>;
        };
        tag: {
            default: string;
            type: StringConstructor;
        };
    }>>;
    VTable: {
        __isFragment?: never;
        __isSuspense?: never;
        __isTeleport?: never;
        new (...args): CreateComponentPublicInstanceWithMixins<{
            density: Density;
            fixedFooter: boolean;
            fixedHeader: boolean;
            hover: boolean;
            striped: Striped;
            style: StyleValue;
            tag: string | JSXComponent;
        } & {
            class?: any;
            height?: string | number;
            theme?: string;
        } & {
            $children?: VNodeChild | (() => VNodeChild) | {
                bottom?: ...;
                default?: ...;
                top?: ...;
                wrapper?: ...;
            };
            v-slots?: {
                bottom?: false | (...);
                default?: false | (...);
                top?: false | (...);
                wrapper?: false | (...);
            };
        } & {
            v-slot:bottom?: false | (() => VNodeChild);
            v-slot:default?: false | (() => VNodeChild);
            v-slot:top?: false | (() => VNodeChild);
            v-slot:wrapper?: false | (() => VNodeChild);
        }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, VNodeProps & AllowedComponentProps & ComponentCustomProps, {
            density: Density;
            fixedFooter: boolean;
            fixedHeader: boolean;
            hover: boolean;
            striped: Striped;
            style: StyleValue;
            tag: string | JSXComponent;
        }, true, {}, SlotsType<Partial<{
            bottom: (() => VNode[]);
            default: (() => VNode[]);
            top: (() => VNode[]);
            wrapper: (() => VNode[]);
        }>>, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
            B: {};
            C: {};
            D: {};
            Defaults: {};
            M: {};
            P: {};
        }, {
            density: Density;
            fixedFooter: boolean;
            fixedHeader: boolean;
            hover: boolean;
            striped: Striped;
            style: StyleValue;
            tag: string | JSXComponent;
        } & {
            class?: any;
            height?: string | number;
            theme?: string;
        } & {
            $children?: VNodeChild | (() => VNodeChild) | {
                bottom?: ...;
                default?: ...;
                top?: ...;
                wrapper?: ...;
            };
            v-slots?: {
                bottom?: false | (...);
                default?: false | (...);
                top?: false | (...);
                wrapper?: false | (...);
            };
        } & {
            v-slot:bottom?: false | (() => VNodeChild);
            v-slot:default?: false | (() => VNodeChild);
            v-slot:top?: false | (() => VNodeChild);
            v-slot:wrapper?: false | (() => VNodeChild);
        }, {}, {}, {}, {}, {
            density: Density;
            fixedFooter: boolean;
            fixedHeader: boolean;
            hover: boolean;
            striped: Striped;
            style: StyleValue;
            tag: string | JSXComponent;
        }>;
    } & ComponentOptionsBase<{
        density: Density;
        fixedFooter: boolean;
        fixedHeader: boolean;
        hover: boolean;
        striped: Striped;
        style: StyleValue;
        tag: string | JSXComponent;
    } & {
        class?: any;
        height?: string | number;
        theme?: string;
    } & {
        $children?: VNodeChild | (() => VNodeChild) | {
            bottom?: (() => ...);
            default?: (() => ...);
            top?: (() => ...);
            wrapper?: (() => ...);
        };
        v-slots?: {
            bottom?: false | (() => ...);
            default?: false | (() => ...);
            top?: false | (() => ...);
            wrapper?: false | (() => ...);
        };
    } & {
        v-slot:bottom?: false | (() => VNodeChild);
        v-slot:default?: false | (() => VNodeChild);
        v-slot:top?: false | (() => VNodeChild);
        v-slot:wrapper?: false | (() => VNodeChild);
    }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, {
        density: Density;
        fixedFooter: boolean;
        fixedHeader: boolean;
        hover: boolean;
        striped: Striped;
        style: StyleValue;
        tag: string | JSXComponent;
    }, {}, string, SlotsType<Partial<{
        bottom: (() => VNode[]);
        default: (() => VNode[]);
        top: (() => VNode[]);
        wrapper: (() => VNode[]);
    }>>, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & FilterPropsOptions<{
        class: PropType<ClassValue>;
        density: {
            default: string;
            type: PropType<Density>;
            validator: ((v) => boolean);
        };
        fixedFooter: BooleanConstructor;
        fixedHeader: BooleanConstructor;
        height: (StringConstructor | NumberConstructor)[];
        hover: BooleanConstructor;
        striped: {
            default: null;
            type: PropType<Striped>;
            validator: ((v) => boolean);
        };
        style: {
            default: null;
            type: PropType<StyleValue>;
        };
        tag: {
            default: string;
            type: PropType<string | JSXComponent>;
        };
        theme: StringConstructor;
    }, ExtractPropTypes<{
        class: PropType<ClassValue>;
        density: {
            default: string;
            type: PropType<Density>;
            validator: ((v) => boolean);
        };
        fixedFooter: BooleanConstructor;
        fixedHeader: BooleanConstructor;
        height: (StringConstructor | NumberConstructor)[];
        hover: BooleanConstructor;
        striped: {
            default: null;
            type: PropType<Striped>;
            validator: ((v) => boolean);
        };
        style: {
            default: null;
            type: PropType<StyleValue>;
        };
        tag: {
            default: string;
            type: PropType<string | JSXComponent>;
        };
        theme: StringConstructor;
    }>>;
    VToolbar: {
        __isFragment?: never;
        __isSuspense?: never;
        __isTeleport?: never;
        new (...args): CreateComponentPublicInstanceWithMixins<{
            absolute: boolean;
            collapse: boolean;
            density: Density;
            extended: boolean;
            extensionHeight: string | number;
            flat: boolean;
            floating: boolean;
            height: string | number;
            style: StyleValue;
            tag: string | JSXComponent;
            tile: boolean;
        } & {
            border?: string | number | boolean;
            class?: any;
            color?: string;
            elevation?: string | number;
            image?: string;
            rounded?: string | number | boolean;
            theme?: string;
            title?: string;
        } & {
            $children?: VNodeChild | (() => VNodeChild) | {
                append?: ...;
                default?: ...;
                extension?: ...;
                image?: ...;
                prepend?: ...;
                title?: ...;
            };
            v-slots?: {
                append?: false | (...);
                default?: false | (...);
                extension?: false | (...);
                image?: false | (...);
                prepend?: false | (...);
                title?: false | (...);
            };
        } & {
            v-slot:append?: false | (() => VNodeChild);
            v-slot:default?: false | (() => VNodeChild);
            v-slot:extension?: false | (() => VNodeChild);
            v-slot:image?: false | (() => VNodeChild);
            v-slot:prepend?: false | (() => VNodeChild);
            v-slot:title?: false | (() => VNodeChild);
        }, {
            contentHeight: ComputedRef<number>;
            extensionHeight: ComputedRef<number>;
        }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, VNodeProps & AllowedComponentProps & ComponentCustomProps, {
            absolute: boolean;
            collapse: boolean;
            density: Density;
            extended: boolean;
            extensionHeight: string | number;
            flat: boolean;
            floating: boolean;
            height: string | number;
            rounded: string | number | boolean;
            style: StyleValue;
            tag: string | JSXComponent;
            tile: boolean;
        }, true, {}, SlotsType<Partial<{
            append: (() => VNode[]);
            default: (() => VNode[]);
            extension: (() => VNode[]);
            image: (() => VNode[]);
            prepend: (() => VNode[]);
            title: (() => VNode[]);
        }>>, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
            B: {};
            C: {};
            D: {};
            Defaults: {};
            M: {};
            P: {};
        }, {
            absolute: boolean;
            collapse: boolean;
            density: Density;
            extended: boolean;
            extensionHeight: string | number;
            flat: boolean;
            floating: boolean;
            height: string | number;
            style: StyleValue;
            tag: string | JSXComponent;
            tile: boolean;
        } & {
            border?: string | number | boolean;
            class?: any;
            color?: string;
            elevation?: string | number;
            image?: string;
            rounded?: string | number | boolean;
            theme?: string;
            title?: string;
        } & {
            $children?: VNodeChild | (() => VNodeChild) | {
                append?: ...;
                default?: ...;
                extension?: ...;
                image?: ...;
                prepend?: ...;
                title?: ...;
            };
            v-slots?: {
                append?: false | (...);
                default?: false | (...);
                extension?: false | (...);
                image?: false | (...);
                prepend?: false | (...);
                title?: false | (...);
            };
        } & {
            v-slot:append?: false | (() => VNodeChild);
            v-slot:default?: false | (() => VNodeChild);
            v-slot:extension?: false | (() => VNodeChild);
            v-slot:image?: false | (() => VNodeChild);
            v-slot:prepend?: false | (() => VNodeChild);
            v-slot:title?: false | (() => VNodeChild);
        }, {
            contentHeight: ComputedRef<number>;
            extensionHeight: ComputedRef<number>;
        }, {}, {}, {}, {
            absolute: boolean;
            collapse: boolean;
            density: Density;
            extended: boolean;
            extensionHeight: string | number;
            flat: boolean;
            floating: boolean;
            height: string | number;
            rounded: string | number | boolean;
            style: StyleValue;
            tag: string | JSXComponent;
            tile: boolean;
        }>;
    } & ComponentOptionsBase<{
        absolute: boolean;
        collapse: boolean;
        density: Density;
        extended: boolean;
        extensionHeight: string | number;
        flat: boolean;
        floating: boolean;
        height: string | number;
        style: StyleValue;
        tag: string | JSXComponent;
        tile: boolean;
    } & {
        border?: string | number | boolean;
        class?: any;
        color?: string;
        elevation?: string | number;
        image?: string;
        rounded?: string | number | boolean;
        theme?: string;
        title?: string;
    } & {
        $children?: VNodeChild | (() => VNodeChild) | {
            append?: (() => ...);
            default?: (() => ...);
            extension?: (() => ...);
            image?: (() => ...);
            prepend?: (() => ...);
            title?: (() => ...);
        };
        v-slots?: {
            append?: false | (() => ...);
            default?: false | (() => ...);
            extension?: false | (() => ...);
            image?: false | (() => ...);
            prepend?: false | (() => ...);
            title?: false | (() => ...);
        };
    } & {
        v-slot:append?: false | (() => VNodeChild);
        v-slot:default?: false | (() => VNodeChild);
        v-slot:extension?: false | (() => VNodeChild);
        v-slot:image?: false | (() => VNodeChild);
        v-slot:prepend?: false | (() => VNodeChild);
        v-slot:title?: false | (() => VNodeChild);
    }, {
        contentHeight: ComputedRef<number>;
        extensionHeight: ComputedRef<number>;
    }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, {
        absolute: boolean;
        collapse: boolean;
        density: Density;
        extended: boolean;
        extensionHeight: string | number;
        flat: boolean;
        floating: boolean;
        height: string | number;
        rounded: string | number | boolean;
        style: StyleValue;
        tag: string | JSXComponent;
        tile: boolean;
    }, {}, string, SlotsType<Partial<{
        append: (() => VNode[]);
        default: (() => VNode[]);
        extension: (() => VNode[]);
        image: (() => VNode[]);
        prepend: (() => VNode[]);
        title: (() => VNode[]);
    }>>, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & FilterPropsOptions<{
        absolute: BooleanConstructor;
        border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
        class: PropType<ClassValue>;
        collapse: BooleanConstructor;
        color: StringConstructor;
        density: {
            default: string;
            type: PropType<Density>;
            validator: ((v) => boolean);
        };
        elevation: {
            type: (StringConstructor | NumberConstructor)[];
            validator(v): boolean;
        };
        extended: {
            default: null;
            type: BooleanConstructor;
        };
        extensionHeight: {
            default: number;
            type: (StringConstructor | NumberConstructor)[];
        };
        flat: BooleanConstructor;
        floating: BooleanConstructor;
        height: {
            default: number;
            type: (StringConstructor | NumberConstructor)[];
        };
        image: StringConstructor;
        rounded: {
            default: undefined;
            type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
        };
        style: {
            default: null;
            type: PropType<StyleValue>;
        };
        tag: Omit<{
            default: string;
            type: PropType<string | JSXComponent>;
        }, "type" | "default"> & {
            default: NonNullable<string | JSXComponent>;
            type: PropType<string | JSXComponent>;
        };
        theme: StringConstructor;
        tile: BooleanConstructor;
        title: StringConstructor;
    }, ExtractPropTypes<{
        absolute: BooleanConstructor;
        border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
        class: PropType<ClassValue>;
        collapse: BooleanConstructor;
        color: StringConstructor;
        density: {
            default: string;
            type: PropType<Density>;
            validator: ((v) => boolean);
        };
        elevation: {
            type: (StringConstructor | NumberConstructor)[];
            validator(v): boolean;
        };
        extended: {
            default: null;
            type: BooleanConstructor;
        };
        extensionHeight: {
            default: number;
            type: (StringConstructor | NumberConstructor)[];
        };
        flat: BooleanConstructor;
        floating: BooleanConstructor;
        height: {
            default: number;
            type: (StringConstructor | NumberConstructor)[];
        };
        image: StringConstructor;
        rounded: {
            default: undefined;
            type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
        };
        style: {
            default: null;
            type: PropType<StyleValue>;
        };
        tag: Omit<{
            default: string;
            type: PropType<(...) | (...)>;
        }, "type" | "default"> & {
            default: NonNullable<string | JSXComponent>;
            type: PropType<string | JSXComponent>;
        };
        theme: StringConstructor;
        tile: BooleanConstructor;
        title: StringConstructor;
    }>>;
    VToolbarTitle: {
        __isFragment?: never;
        __isSuspense?: never;
        __isTeleport?: never;
        new (...args): CreateComponentPublicInstanceWithMixins<{
            style: StyleValue;
            tag: string | JSXComponent;
        } & {
            class?: any;
            text?: string;
        } & {
            $children?: VNodeChild | (() => VNodeChild) | {
                default?: ...;
                text?: ...;
            };
            v-slots?: {
                default?: false | (...);
                text?: false | (...);
            };
        } & {
            v-slot:default?: false | (() => VNodeChild);
            v-slot:text?: false | (() => VNodeChild);
        }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, VNodeProps & AllowedComponentProps & ComponentCustomProps, {
            style: StyleValue;
            tag: string | JSXComponent;
        }, true, {}, SlotsType<Partial<{
            default: (() => VNode[]);
            text: (() => VNode[]);
        }>>, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
            B: {};
            C: {};
            D: {};
            Defaults: {};
            M: {};
            P: {};
        }, {
            style: StyleValue;
            tag: string | JSXComponent;
        } & {
            class?: any;
            text?: string;
        } & {
            $children?: VNodeChild | (() => VNodeChild) | {
                default?: ...;
                text?: ...;
            };
            v-slots?: {
                default?: false | (...);
                text?: false | (...);
            };
        } & {
            v-slot:default?: false | (() => VNodeChild);
            v-slot:text?: false | (() => VNodeChild);
        }, {}, {}, {}, {}, {
            style: StyleValue;
            tag: string | JSXComponent;
        }>;
    } & ComponentOptionsBase<{
        style: StyleValue;
        tag: string | JSXComponent;
    } & {
        class?: any;
        text?: string;
    } & {
        $children?: VNodeChild | (() => VNodeChild) | {
            default?: (() => ...);
            text?: (() => ...);
        };
        v-slots?: {
            default?: false | (() => ...);
            text?: false | (() => ...);
        };
    } & {
        v-slot:default?: false | (() => VNodeChild);
        v-slot:text?: false | (() => VNodeChild);
    }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, {
        style: StyleValue;
        tag: string | JSXComponent;
    }, {}, string, SlotsType<Partial<{
        default: (() => VNode[]);
        text: (() => VNode[]);
    }>>, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & FilterPropsOptions<{
        class: PropType<ClassValue>;
        style: {
            default: null;
            type: PropType<StyleValue>;
        };
        tag: {
            default: string;
            type: PropType<string | JSXComponent>;
        };
        text: StringConstructor;
    }, ExtractPropTypes<{
        class: PropType<ClassValue>;
        style: {
            default: null;
            type: PropType<StyleValue>;
        };
        tag: {
            default: string;
            type: PropType<string | JSXComponent>;
        };
        text: StringConstructor;
    }>>;
    VTooltip: {
        __isFragment?: never;
        __isSuspense?: never;
        __isTeleport?: never;
        new (...args): CreateComponentPublicInstanceWithMixins<{
            activatorProps: Record<string, any>;
            closeOnBack: boolean;
            closeOnContentClick: boolean;
            contained: boolean;
            disabled: boolean;
            eager: boolean;
            interactive: boolean;
            location: Anchor;
            locationStrategy: "connected" | "static" | LocationStrategyFunction;
            minWidth: string | number;
            modelValue: boolean;
            noClickAnimation: boolean;
            offset: string | number | number[] | undefined;
            openOnClick: boolean;
            openOnHover: boolean;
            origin: "auto" | Anchor | "overlap";
            scrim: string | boolean;
            scrollStrategy: "none" | "block" | "close" | ScrollStrategyFunction | "reposition";
            style: StyleValue;
            transition: string | boolean | TransitionProps & {
                component?: ...;
            } | null;
            zIndex: string | number;
        } & {
            activator?: Element | "parent" | string & {} | ComponentPublicInstance;
            attach?: string | boolean | Element;
            class?: any;
            closeDelay?: string | number;
            contentClass?: any;
            contentProps?: any;
            height?: string | number;
            id?: string;
            maxHeight?: string | number;
            maxWidth?: string | number;
            minHeight?: string | number;
            opacity?: string | number;
            openDelay?: string | number;
            openOnFocus?: boolean;
            target?: Element | "cursor" | "parent" | string & {} | ComponentPublicInstance | [x: number, y: number];
            text?: string;
            theme?: string;
            width?: string | number;
        } & {
            $children?: VNodeChild | {
                activator?: ...;
                default?: ...;
            } | ((arg) => VNodeChild);
            v-slots?: {
                activator?: false | (...);
                default?: false | (...);
            };
        } & {
            v-slot:activator?: false | ((arg) => VNodeChild);
            v-slot:default?: false | ((arg) => VNodeChild);
        } & {
            onUpdate:modelValue?: ((value) => any);
        }, Omit<Omit<{
            $: ComponentInternalInstance;
            $attrs: {
                [x: ...]: ...;
            };
            $data: {};
            $el: any;
            $emit: (...) & (...) & (...) & (...) & (...);
            $forceUpdate: (() => ...);
            $host: (...) | (...);
            $nextTick: nextTick;
            $options: (...) & (...);
            $parent: (...) | (...);
            $props: (...) & (...);
            $refs: {
                [x: ...]: ...;
            };
            $root: (...) | (...);
            $slots: Readonly<(...)>;
            $watch<T>(source, cb, options?): WatchStopHandle;
        } & Readonly<{
            _disableGlobalStack: ...;
            absolute: ...;
            activatorProps: ...;
            closeOnBack: ...;
            closeOnContentClick: ...;
            contained: ...;
            disabled: ...;
            eager: ...;
            location: ...;
            locationStrategy: ...;
            modelValue: ...;
            noClickAnimation: ...;
            openOnClick: ...;
            openOnFocus: ...;
            openOnHover: ...;
            origin: ...;
            persistent: ...;
            scrim: ...;
            scrollStrategy: ...;
            style: ...;
            zIndex: ...;
        }> & Omit<(...) & (...) & (...) & (...) & (...), (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...)> & ShallowUnwrapRef<{
            activatorEl: ...;
            animateClick: ...;
            contentEl: ...;
            globalTop: ...;
            localTop: ...;
            scrimEl: ...;
            target: ...;
            updateLocation: ...;
        }> & ComponentCustomProperties, "style" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | "disabled" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "offset" | "absolute" | "target" | "location" | "origin" | "zIndex" | "eager" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack" | "opacity" | "transition" | "closeDelay" | "openDelay" | "activator" | "contentClass" | "contentProps" | "attach" | "v-slot:activator" | "onAfterEnter" | "onAfterLeave" | "onKeydown" | "onUpdate:modelValue" | "onClick:outside" | (keyof VNodeProps)>, `$${any}`> & {
            _allExposed: {
                activatorEl: Ref<(...) | (...), (...) | (...)>;
                animateClick: (() => void);
                contentEl: Ref<(...) | (...), (...) | (...)>;
                globalTop: Readonly<Ref<(...), (...)>>;
                localTop: Readonly<Ref<(...), (...)>>;
                scrimEl: Ref<(...) | (...), (...) | (...)>;
                target: ComputedRef<(...) | (...) | (...)>;
                updateLocation: Ref<(...) | (...), (...) | (...)>;
            } | {};
        }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
            update:modelValue: ((value) => true);
        }, VNodeProps & AllowedComponentProps & ComponentCustomProps, {
            activatorProps: Record<string, any>;
            closeOnBack: boolean;
            closeOnContentClick: boolean;
            contained: boolean;
            disabled: boolean;
            eager: boolean;
            interactive: boolean;
            location: Anchor;
            locationStrategy: "connected" | "static" | LocationStrategyFunction;
            minWidth: string | number;
            modelValue: boolean;
            noClickAnimation: boolean;
            offset: string | number | number[] | undefined;
            openOnClick: boolean;
            openOnFocus: boolean;
            openOnHover: boolean;
            origin: "auto" | Anchor | "overlap";
            scrim: string | boolean;
            scrollStrategy: "none" | "block" | "close" | ScrollStrategyFunction | "reposition";
            style: StyleValue;
            transition: string | boolean | TransitionProps & {
                component?: Component;
            } | null;
            zIndex: string | number;
        }, true, {}, SlotsType<Partial<{
            activator: ((arg) => VNode[]);
            default: ((arg) => VNode[]);
        }>>, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
            B: {};
            C: {};
            D: {};
            Defaults: {};
            M: {};
            P: {};
        }, {
            activatorProps: Record<string, any>;
            closeOnBack: boolean;
            closeOnContentClick: boolean;
            contained: boolean;
            disabled: boolean;
            eager: boolean;
            interactive: boolean;
            location: Anchor;
            locationStrategy: "connected" | "static" | LocationStrategyFunction;
            minWidth: string | number;
            modelValue: boolean;
            noClickAnimation: boolean;
            offset: string | number | number[] | undefined;
            openOnClick: boolean;
            openOnHover: boolean;
            origin: "auto" | Anchor | "overlap";
            scrim: string | boolean;
            scrollStrategy: "none" | "block" | "close" | ScrollStrategyFunction | "reposition";
            style: StyleValue;
            transition: string | boolean | TransitionProps & {
                component?: ...;
            } | null;
            zIndex: string | number;
        } & {
            activator?: Element | "parent" | string & {} | ComponentPublicInstance;
            attach?: string | boolean | Element;
            class?: any;
            closeDelay?: string | number;
            contentClass?: any;
            contentProps?: any;
            height?: string | number;
            id?: string;
            maxHeight?: string | number;
            maxWidth?: string | number;
            minHeight?: string | number;
            opacity?: string | number;
            openDelay?: string | number;
            openOnFocus?: boolean;
            target?: Element | "cursor" | "parent" | string & {} | ComponentPublicInstance | [x: number, y: number];
            text?: string;
            theme?: string;
            width?: string | number;
        } & {
            $children?: VNodeChild | {
                activator?: ...;
                default?: ...;
            } | ((arg) => VNodeChild);
            v-slots?: {
                activator?: false | (...);
                default?: false | (...);
            };
        } & {
            v-slot:activator?: false | ((arg) => VNodeChild);
            v-slot:default?: false | ((arg) => VNodeChild);
        } & {
            onUpdate:modelValue?: ((value) => any);
        }, Omit<Omit<{
            $: ComponentInternalInstance;
            $attrs: {
                [x: ...]: ...;
            };
            $data: {};
            $el: any;
            $emit: (...) & (...) & (...) & (...) & (...);
            $forceUpdate: (() => ...);
            $host: (...) | (...);
            $nextTick: nextTick;
            $options: (...) & (...);
            $parent: (...) | (...);
            $props: (...) & (...);
            $refs: {
                [x: ...]: ...;
            };
            $root: (...) | (...);
            $slots: Readonly<(...)>;
            $watch<T>(source, cb, options?): WatchStopHandle;
        } & Readonly<{
            _disableGlobalStack: ...;
            absolute: ...;
            activatorProps: ...;
            closeOnBack: ...;
            closeOnContentClick: ...;
            contained: ...;
            disabled: ...;
            eager: ...;
            location: ...;
            locationStrategy: ...;
            modelValue: ...;
            noClickAnimation: ...;
            openOnClick: ...;
            openOnFocus: ...;
            openOnHover: ...;
            origin: ...;
            persistent: ...;
            scrim: ...;
            scrollStrategy: ...;
            style: ...;
            zIndex: ...;
        }> & Omit<(...) & (...) & (...) & (...) & (...), (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...)> & ShallowUnwrapRef<{
            activatorEl: ...;
            animateClick: ...;
            contentEl: ...;
            globalTop: ...;
            localTop: ...;
            scrimEl: ...;
            target: ...;
            updateLocation: ...;
        }> & ComponentCustomProperties, "style" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | "disabled" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "offset" | "absolute" | "target" | "location" | "origin" | "zIndex" | "eager" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack" | "opacity" | "transition" | "closeDelay" | "openDelay" | "activator" | "contentClass" | "contentProps" | "attach" | "v-slot:activator" | "onAfterEnter" | "onAfterLeave" | "onKeydown" | "onUpdate:modelValue" | "onClick:outside" | (keyof VNodeProps)>, `$${any}`> & {
            _allExposed: {
                activatorEl: Ref<(...) | (...), (...) | (...)>;
                animateClick: (() => void);
                contentEl: Ref<(...) | (...), (...) | (...)>;
                globalTop: Readonly<Ref<(...), (...)>>;
                localTop: Readonly<Ref<(...), (...)>>;
                scrimEl: Ref<(...) | (...), (...) | (...)>;
                target: ComputedRef<(...) | (...) | (...)>;
                updateLocation: Ref<(...) | (...), (...) | (...)>;
            } | {};
        }, {}, {}, {}, {
            activatorProps: Record<string, any>;
            closeOnBack: boolean;
            closeOnContentClick: boolean;
            contained: boolean;
            disabled: boolean;
            eager: boolean;
            interactive: boolean;
            location: Anchor;
            locationStrategy: "connected" | "static" | LocationStrategyFunction;
            minWidth: string | number;
            modelValue: boolean;
            noClickAnimation: boolean;
            offset: string | number | number[] | undefined;
            openOnClick: boolean;
            openOnFocus: boolean;
            openOnHover: boolean;
            origin: "auto" | Anchor | "overlap";
            scrim: string | boolean;
            scrollStrategy: "none" | "block" | "close" | ScrollStrategyFunction | "reposition";
            style: StyleValue;
            transition: string | boolean | TransitionProps & {
                component?: Component;
            } | null;
            zIndex: string | number;
        }>;
    } & ComponentOptionsBase<{
        activatorProps: Record<string, any>;
        closeOnBack: boolean;
        closeOnContentClick: boolean;
        contained: boolean;
        disabled: boolean;
        eager: boolean;
        interactive: boolean;
        location: Anchor;
        locationStrategy: "connected" | "static" | LocationStrategyFunction;
        minWidth: string | number;
        modelValue: boolean;
        noClickAnimation: boolean;
        offset: string | number | number[] | undefined;
        openOnClick: boolean;
        openOnHover: boolean;
        origin: "auto" | Anchor | "overlap";
        scrim: string | boolean;
        scrollStrategy: "none" | "block" | "close" | ScrollStrategyFunction | "reposition";
        style: StyleValue;
        transition: string | boolean | TransitionProps & {
            component?: Component;
        } | null;
        zIndex: string | number;
    } & {
        activator?: Element | "parent" | string & {} | ComponentPublicInstance;
        attach?: string | boolean | Element;
        class?: any;
        closeDelay?: string | number;
        contentClass?: any;
        contentProps?: any;
        height?: string | number;
        id?: string;
        maxHeight?: string | number;
        maxWidth?: string | number;
        minHeight?: string | number;
        opacity?: string | number;
        openDelay?: string | number;
        openOnFocus?: boolean;
        target?: Element | "cursor" | "parent" | string & {} | ComponentPublicInstance | [x: number, y: number];
        text?: string;
        theme?: string;
        width?: string | number;
    } & {
        $children?: VNodeChild | {
            activator?: ((arg) => ...);
            default?: ((arg) => ...);
        } | ((arg) => VNodeChild);
        v-slots?: {
            activator?: false | ((arg) => ...);
            default?: false | ((arg) => ...);
        };
    } & {
        v-slot:activator?: false | ((arg) => VNodeChild);
        v-slot:default?: false | ((arg) => VNodeChild);
    } & {
        onUpdate:modelValue?: ((value) => any);
    }, Omit<Omit<{
        $: ComponentInternalInstance;
        $attrs: {
            [x: string]: unknown;
        };
        $data: {};
        $el: any;
        $emit: (...) & (...) & (...) & (...) & (...);
        $forceUpdate: (() => void);
        $host: Element | null;
        $nextTick: nextTick;
        $options: ComponentOptionsBase<(...), (...), (...), (...), (...), (...), (...), (...), (...), (...), (...), (...), (...), (...), (...), (...), (...)> & {
            activated?: ...;
            beforeCreate?: ...;
            beforeDestroy?: ...;
            beforeMount?: ...;
            beforeUnmount?: ...;
            beforeUpdate?: ...;
            created?: ...;
            deactivated?: ...;
            destroyed?: ...;
            errorCaptured?: ...;
            mounted?: ...;
            renderTracked?: ...;
            renderTriggered?: ...;
            unmounted?: ...;
            updated?: ...;
        };
        $parent: ComponentPublicInstance | null;
        $props: Partial<(...)> & Omit<(...), (...)>;
        $refs: {
            [x: string]: unknown;
        };
        $root: ComponentPublicInstance | null;
        $slots: Readonly<{
            activator?: ...;
            default?: ...;
        }>;
        $watch<T>(source, cb, options?): WatchStopHandle;
    } & Readonly<{
        _disableGlobalStack: boolean;
        absolute: boolean;
        activatorProps: Record<(...), (...)>;
        closeOnBack: boolean;
        closeOnContentClick: boolean;
        contained: boolean;
        disabled: boolean;
        eager: boolean;
        location: Anchor;
        locationStrategy: (...) | (...) | (...);
        modelValue: boolean;
        noClickAnimation: boolean;
        openOnClick: boolean;
        openOnFocus: boolean;
        openOnHover: boolean;
        origin: (...) | (...) | (...);
        persistent: boolean;
        scrim: (...) | (...);
        scrollStrategy: (...) | (...) | (...) | (...) | (...);
        style: StyleValue;
        zIndex: (...) | (...);
    }> & Omit<{
        _disableGlobalStack: ...;
        absolute: ...;
        activatorProps: ...;
        closeOnBack: ...;
        closeOnContentClick: ...;
        contained: ...;
        disabled: ...;
        eager: ...;
        location: ...;
        locationStrategy: ...;
        modelValue: ...;
        noClickAnimation: ...;
        openOnHover: ...;
        origin: ...;
        persistent: ...;
        scrim: ...;
        scrollStrategy: ...;
        style: ...;
        zIndex: ...;
    } & {
        activator?: ...;
        attach?: ...;
        class?: ...;
        closeDelay?: ...;
        contentClass?: ...;
        contentProps?: ...;
        height?: ...;
        maxHeight?: ...;
        maxWidth?: ...;
        minHeight?: ...;
        minWidth?: ...;
        offset?: ...;
        opacity?: ...;
        openDelay?: ...;
        openOnClick?: ...;
        openOnFocus?: ...;
        target?: ...;
        theme?: ...;
        transition?: ...;
        width?: ...;
    } & {
        $children?: ...;
        v-slots?: ...;
    } & {
        v-slot:activator?: ...;
        v-slot:default?: ...;
    } & {
        onAfterEnter?: ...;
        onAfterLeave?: ...;
        onClick:outside?: ...;
        onKeydown?: ...;
        onUpdate:modelValue?: ...;
    }, "style" | "location" | "modelValue" | "target" | "contentEl" | "activatorEl" | "absolute" | "origin" | "zIndex" | "eager" | "disabled" | "persistent" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & ShallowUnwrapRef<{
        activatorEl: Ref<(...), (...)>;
        animateClick: (() => ...);
        contentEl: Ref<(...), (...)>;
        globalTop: Readonly<(...)>;
        localTop: Readonly<(...)>;
        scrimEl: Ref<(...), (...)>;
        target: ComputedRef<(...)>;
        updateLocation: Ref<(...), (...)>;
    }> & ComponentCustomProperties, "theme" | "class" | "style" | "$children" | "v-slots" | "v-slot:default" | keyof VNodeProps | "onKeydown" | "height" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "width" | "transition" | "location" | "modelValue" | "target" | "absolute" | "origin" | "zIndex" | "eager" | "disabled" | "persistent" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack" | "offset" | "opacity" | "closeDelay" | "openDelay" | "activator" | "contentClass" | "contentProps" | "attach" | "v-slot:activator" | "onAfterEnter" | "onAfterLeave" | "onUpdate:modelValue" | "onClick:outside">, `$${any}`> & {
        _allExposed: {
            activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
            animateClick: (() => void);
            contentEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
            globalTop: Readonly<Ref<boolean, boolean>>;
            localTop: Readonly<Ref<boolean, boolean>>;
            scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
            target: ComputedRef<HTMLElement | [(...), (...)] | undefined>;
            updateLocation: Ref<(...) | undefined, (...) | undefined>;
        } | {};
    }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
        update:modelValue: ((value) => true);
    }, string, {
        activatorProps: Record<string, any>;
        closeOnBack: boolean;
        closeOnContentClick: boolean;
        contained: boolean;
        disabled: boolean;
        eager: boolean;
        interactive: boolean;
        location: Anchor;
        locationStrategy: "connected" | "static" | LocationStrategyFunction;
        minWidth: string | number;
        modelValue: boolean;
        noClickAnimation: boolean;
        offset: string | number | number[] | undefined;
        openOnClick: boolean;
        openOnFocus: boolean;
        openOnHover: boolean;
        origin: "auto" | Anchor | "overlap";
        scrim: string | boolean;
        scrollStrategy: "none" | "block" | "close" | ScrollStrategyFunction | "reposition";
        style: StyleValue;
        transition: string | boolean | TransitionProps & {
            component?: Component;
        } | null;
        zIndex: string | number;
    }, {}, string, SlotsType<Partial<{
        activator: ((arg) => VNode[]);
        default: ((arg) => VNode[]);
    }>>, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & FilterPropsOptions<{
        activator: PropType<Element | "parent" | string & {} | ComponentPublicInstance | undefined>;
        activatorProps: {
            default: (() => {});
            type: PropType<Record<string, any>>;
        };
        attach: PropType<boolean | string | Element>;
        class: PropType<ClassValue>;
        closeDelay: (StringConstructor | NumberConstructor)[];
        closeOnBack: Omit<{
            default: boolean;
            type: BooleanConstructor;
        }, "type" | "default"> & {
            default: boolean;
            type: PropType<boolean>;
        };
        closeOnContentClick: BooleanConstructor;
        contained: BooleanConstructor;
        contentClass: null;
        contentProps: null;
        disabled: BooleanConstructor;
        eager: {
            default: boolean;
            type: PropType<boolean>;
        };
        height: (StringConstructor | NumberConstructor)[];
        id: StringConstructor;
        interactive: BooleanConstructor;
        location: Omit<{
            default: string;
            type: PropType<StrategyProps["location"]>;
        }, "type" | "default"> & {
            default: NonNullable<Anchor>;
            type: PropType<Anchor>;
        };
        locationStrategy: Omit<{
            default: string;
            type: PropType<StrategyProps["locationStrategy"]>;
            validator: ((val) => boolean);
        }, "type" | "default"> & {
            default: NonNullable<"connected" | "static" | LocationStrategyFunction>;
            type: PropType<"connected" | "static" | LocationStrategyFunction>;
        };
        maxHeight: (StringConstructor | NumberConstructor)[];
        maxWidth: (StringConstructor | NumberConstructor)[];
        minHeight: (StringConstructor | NumberConstructor)[];
        minWidth: {
            default: NonNullable<string | number>;
            type: PropType<string | number>;
        };
        modelValue: BooleanConstructor;
        noClickAnimation: BooleanConstructor;
        offset: {
            default: NonNullable<string | number | number[] | undefined>;
            type: PropType<string | number | number[] | undefined>;
        };
        opacity: (StringConstructor | NumberConstructor)[];
        openDelay: (StringConstructor | NumberConstructor)[];
        openOnClick: Omit<{
            default: undefined;
            type: BooleanConstructor;
        }, "type" | "default"> & {
            default: boolean;
            type: PropType<boolean>;
        };
        openOnFocus: {
            default: undefined;
            type: BooleanConstructor;
        };
        openOnHover: {
            default: boolean;
            type: PropType<boolean>;
        };
        origin: Omit<{
            default: string;
            type: PropType<StrategyProps["origin"]>;
        }, "type" | "default"> & {
            default: NonNullable<"auto" | Anchor | "overlap">;
            type: PropType<"auto" | Anchor | "overlap">;
        };
        scrim: Omit<{
            default: boolean;
            type: ((...) | (...))[];
        }, "type" | "default"> & {
            default: NonNullable<string | boolean>;
            type: PropType<string | boolean>;
        };
        scrollStrategy: Omit<{
            default: string;
            type: PropType<StrategyProps["scrollStrategy"]>;
            validator: ((val) => boolean);
        }, "type" | "default"> & {
            default: NonNullable<"none" | "block" | "close" | ScrollStrategyFunction | "reposition">;
            type: PropType<"none" | "block" | "close" | ScrollStrategyFunction | "reposition">;
        };
        style: {
            default: null;
            type: PropType<StyleValue>;
        };
        target: PropType<Element | "cursor" | "parent" | string & {} | ComponentPublicInstance | [x: number, y: number] | undefined>;
        text: StringConstructor;
        theme: StringConstructor;
        transition: {
            default: NonNullable<string | boolean | (...) & (...) | null> | null;
            type: PropType<string | boolean | TransitionProps & {
                component?: ...;
            } | null>;
        };
        width: (StringConstructor | NumberConstructor)[];
        zIndex: {
            default: number;
            type: (StringConstructor | NumberConstructor)[];
        };
    }, ExtractPropTypes<{
        activator: PropType<Element | "parent" | string & {} | ComponentPublicInstance | undefined>;
        activatorProps: {
            default: (() => {});
            type: PropType<Record<string, any>>;
        };
        attach: PropType<boolean | string | Element>;
        class: PropType<ClassValue>;
        closeDelay: (StringConstructor | NumberConstructor)[];
        closeOnBack: Omit<{
            default: boolean;
            type: BooleanConstructor;
        }, "type" | "default"> & {
            default: boolean;
            type: PropType<boolean>;
        };
        closeOnContentClick: BooleanConstructor;
        contained: BooleanConstructor;
        contentClass: null;
        contentProps: null;
        disabled: BooleanConstructor;
        eager: {
            default: boolean;
            type: PropType<boolean>;
        };
        height: (StringConstructor | NumberConstructor)[];
        id: StringConstructor;
        interactive: BooleanConstructor;
        location: Omit<{
            default: string;
            type: PropType<(...)[(...)]>;
        }, "type" | "default"> & {
            default: NonNullable<Anchor>;
            type: PropType<Anchor>;
        };
        locationStrategy: Omit<{
            default: string;
            type: PropType<(...)[(...)]>;
            validator: ((val) => boolean);
        }, "type" | "default"> & {
            default: NonNullable<"connected" | "static" | LocationStrategyFunction>;
            type: PropType<"connected" | "static" | LocationStrategyFunction>;
        };
        maxHeight: (StringConstructor | NumberConstructor)[];
        maxWidth: (StringConstructor | NumberConstructor)[];
        minHeight: (StringConstructor | NumberConstructor)[];
        minWidth: {
            default: NonNullable<string | number>;
            type: PropType<string | number>;
        };
        modelValue: BooleanConstructor;
        noClickAnimation: BooleanConstructor;
        offset: {
            default: NonNullable<string | number | number[] | undefined>;
            type: PropType<string | number | number[] | undefined>;
        };
        opacity: (StringConstructor | NumberConstructor)[];
        openDelay: (StringConstructor | NumberConstructor)[];
        openOnClick: Omit<{
            default: undefined;
            type: BooleanConstructor;
        }, "type" | "default"> & {
            default: boolean;
            type: PropType<boolean>;
        };
        openOnFocus: {
            default: undefined;
            type: BooleanConstructor;
        };
        openOnHover: {
            default: boolean;
            type: PropType<boolean>;
        };
        origin: Omit<{
            default: string;
            type: PropType<(...)[(...)]>;
        }, "type" | "default"> & {
            default: NonNullable<"auto" | Anchor | "overlap">;
            type: PropType<"auto" | Anchor | "overlap">;
        };
        scrim: Omit<{
            default: boolean;
            type: (...)[];
        }, "type" | "default"> & {
            default: NonNullable<string | boolean>;
            type: PropType<string | boolean>;
        };
        scrollStrategy: Omit<{
            default: string;
            type: PropType<(...)[(...)]>;
            validator: ((val) => boolean);
        }, "type" | "default"> & {
            default: NonNullable<"none" | "block" | "close" | ScrollStrategyFunction | "reposition">;
            type: PropType<"none" | "block" | "close" | ScrollStrategyFunction | "reposition">;
        };
        style: {
            default: null;
            type: PropType<StyleValue>;
        };
        target: PropType<Element | "cursor" | "parent" | string & {} | ComponentPublicInstance | [x: number, y: number] | undefined>;
        text: StringConstructor;
        theme: StringConstructor;
        transition: {
            default: NonNullable<string | boolean | (...) | null> | null;
            type: PropType<string | boolean | (...) & (...) | null>;
        };
        width: (StringConstructor | NumberConstructor)[];
        zIndex: {
            default: number;
            type: (StringConstructor | NumberConstructor)[];
        };
    }>>;
    ValidationIcon: DefineComponent<ExtractPropTypes<{
        errors: {
            required: true;
            type: PropType<ErrorObject[]>;
        };
    }>, {
        icons: {
            current: ComputedRef<IconAliases>;
        };
    }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<{
        errors: {
            required: true;
            type: PropType<ErrorObject[]>;
        };
    }>> & Readonly<{}>, {}, {}, {
        VIcon: {
            __isFragment?: never;
            __isSuspense?: never;
            __isTeleport?: never;
            new (...args): CreateComponentPublicInstanceWithMixins<{
                disabled: boolean;
                end: boolean;
                size: string | number;
                start: boolean;
                style: StyleValue;
                tag: string | JSXComponent;
            } & {
                class?: any;
                color?: string;
                icon?: IconValue;
                opacity?: string | number;
                theme?: string;
            } & {
                $children?: VNodeChild | {
                    default?: ...;
                } | (...);
                v-slots?: {
                    default?: ...;
                };
            } & {
                v-slot:default?: false | (...);
            }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, VNodeProps & AllowedComponentProps & ComponentCustomProps, {
                disabled: boolean;
                end: boolean;
                size: string | number;
                start: boolean;
                style: StyleValue;
                tag: string | JSXComponent;
            }, true, {}, SlotsType<Partial<{
                default: (() => ...);
            }>>, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
                B: {};
                C: {};
                D: {};
                Defaults: {};
                M: {};
                P: {};
            }, {
                disabled: boolean;
                end: boolean;
                size: string | number;
                start: boolean;
                style: StyleValue;
                tag: string | JSXComponent;
            } & {
                class?: any;
                color?: string;
                icon?: IconValue;
                opacity?: string | number;
                theme?: string;
            } & {
                $children?: VNodeChild | {
                    default?: ...;
                } | (...);
                v-slots?: {
                    default?: ...;
                };
            } & {
                v-slot:default?: false | (...);
            }, {}, {}, {}, {}, {
                disabled: boolean;
                end: boolean;
                size: string | number;
                start: boolean;
                style: StyleValue;
                tag: string | JSXComponent;
            }>;
        } & ComponentOptionsBase<{
            disabled: boolean;
            end: boolean;
            size: string | number;
            start: boolean;
            style: StyleValue;
            tag: string | JSXComponent;
        } & {
            class?: any;
            color?: string;
            icon?: IconValue;
            opacity?: string | number;
            theme?: string;
        } & {
            $children?: VNodeChild | {
                default?: (...) | (...);
            } | (() => ...);
            v-slots?: {
                default?: (...) | (...) | (...);
            };
        } & {
            v-slot:default?: false | (() => ...);
        }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, {
            disabled: boolean;
            end: boolean;
            size: string | number;
            start: boolean;
            style: StyleValue;
            tag: string | JSXComponent;
        }, {}, string, SlotsType<Partial<{
            default: (() => (...)[]);
        }>>, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & FilterPropsOptions<{
            class: PropType<ClassValue>;
            color: StringConstructor;
            disabled: BooleanConstructor;
            end: BooleanConstructor;
            icon: PropType<IconValue>;
            opacity: (StringConstructor | NumberConstructor)[];
            size: {
                default: string;
                type: ((...) | (...))[];
            };
            start: BooleanConstructor;
            style: {
                default: null;
                type: PropType<StyleValue>;
            };
            tag: Omit<{
                default: string;
                type: PropType<(...)>;
            }, "type" | "default"> & {
                default: NonNullable<(...) | (...)>;
                type: PropType<(...) | (...)>;
            };
            theme: StringConstructor;
        }, ExtractPropTypes<{
            class: PropType<ClassValue>;
            color: StringConstructor;
            disabled: BooleanConstructor;
            end: BooleanConstructor;
            icon: PropType<IconValue>;
            opacity: ((...) | (...))[];
            size: {
                default: string;
                type: (...)[];
            };
            start: BooleanConstructor;
            style: {
                default: null;
                type: PropType<StyleValue>;
            };
            tag: Omit<{
                default: ...;
                type: ...;
            }, (...) | (...)> & {
                default: NonNullable<(...)>;
                type: PropType<(...)>;
            };
            theme: StringConstructor;
        }>>;
        ValidationBadge: DefineComponent<ExtractPropTypes<{
            bordered: {
                default: boolean;
                type: BooleanConstructor;
            };
            color: {
                default: string;
                type: StringConstructor;
            };
            errors: {
                required: true;
                type: PropType<ErrorObject[]>;
            };
            floating: {
                default: boolean;
                type: BooleanConstructor;
            };
            inline: {
                default: boolean;
                type: BooleanConstructor;
            };
            offsetX: {
                default: undefined;
                type: ((...) | (...))[];
            };
            offsetY: {
                default: undefined;
                type: ((...) | (...))[];
            };
        }>, {
            t: ComputedRef<Translator> | null;
        }, {}, {
            tooltipMessages(): string[];
        }, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<{
            bordered: {
                default: boolean;
                type: BooleanConstructor;
            };
            color: {
                default: string;
                type: StringConstructor;
            };
            errors: {
                required: true;
                type: PropType<(...)>;
            };
            floating: {
                default: boolean;
                type: BooleanConstructor;
            };
            inline: {
                default: boolean;
                type: BooleanConstructor;
            };
            offsetX: {
                default: undefined;
                type: (...)[];
            };
            offsetY: {
                default: undefined;
                type: (...)[];
            };
        }>> & Readonly<{}>, {
            bordered: boolean;
            color: string;
            floating: boolean;
            inline: boolean;
            offsetX: string | number;
            offsetY: string | number;
        }, {}, {
            VBadge: {
                __isFragment?: never;
                __isSuspense?: never;
                __isTeleport?: never;
                new (...args): CreateComponentPublicInstanceWithMixins<{
                    bordered: ...;
                    dot: ...;
                    floating: ...;
                    inline: ...;
                    label: ...;
                    location: ...;
                    modelValue: ...;
                    style: ...;
                    tag: ...;
                    tile: ...;
                    transition: ...;
                } & {
                    class?: ...;
                    color?: ...;
                    content?: ...;
                    height?: ...;
                    icon?: ...;
                    max?: ...;
                    maxHeight?: ...;
                    maxWidth?: ...;
                    minHeight?: ...;
                    minWidth?: ...;
                    offsetX?: ...;
                    offsetY?: ...;
                    rounded?: ...;
                    textColor?: ...;
                    theme?: ...;
                    width?: ...;
                } & {
                    $children?: ...;
                    v-slots?: ...;
                } & {
                    v-slot:badge?: ...;
                    v-slot:default?: ...;
                }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, VNodeProps & AllowedComponentProps & ComponentCustomProps, {
                    bordered: boolean;
                    dot: boolean;
                    floating: boolean;
                    inline: boolean;
                    label: string;
                    location: (...) | (...);
                    modelValue: boolean;
                    rounded: (...) | (...) | (...);
                    style: StyleValue;
                    tag: (...) | (...);
                    tile: boolean;
                    transition: (...) | (...) | (...) | (...);
                }, true, {}, SlotsType<Partial<(...)>>, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
                    B: {};
                    C: {};
                    D: {};
                    Defaults: {};
                    M: {};
                    P: {};
                }, {
                    bordered: ...;
                    dot: ...;
                    floating: ...;
                    inline: ...;
                    label: ...;
                    location: ...;
                    modelValue: ...;
                    style: ...;
                    tag: ...;
                    tile: ...;
                    transition: ...;
                } & {
                    class?: ...;
                    color?: ...;
                    content?: ...;
                    height?: ...;
                    icon?: ...;
                    max?: ...;
                    maxHeight?: ...;
                    maxWidth?: ...;
                    minHeight?: ...;
                    minWidth?: ...;
                    offsetX?: ...;
                    offsetY?: ...;
                    rounded?: ...;
                    textColor?: ...;
                    theme?: ...;
                    width?: ...;
                } & {
                    $children?: ...;
                    v-slots?: ...;
                } & {
                    v-slot:badge?: ...;
                    v-slot:default?: ...;
                }, {}, {}, {}, {}, {
                    bordered: boolean;
                    dot: boolean;
                    floating: boolean;
                    inline: boolean;
                    label: string;
                    location: (...) | (...);
                    modelValue: boolean;
                    rounded: (...) | (...) | (...);
                    style: StyleValue;
                    tag: (...) | (...);
                    tile: boolean;
                    transition: (...) | (...) | (...) | (...);
                }>;
            } & ComponentOptionsBase<{
                bordered: boolean;
                dot: boolean;
                floating: boolean;
                inline: boolean;
                label: string;
                location: (...) | (...);
                modelValue: boolean;
                style: StyleValue;
                tag: (...) | (...);
                tile: boolean;
                transition: (...) | (...) | (...) | (...);
            } & {
                class?: any;
                color?: (...) | (...);
                content?: (...) | (...) | (...);
                height?: (...) | (...) | (...);
                icon?: (...) | (...);
                max?: (...) | (...) | (...);
                maxHeight?: (...) | (...) | (...);
                maxWidth?: (...) | (...) | (...);
                minHeight?: (...) | (...) | (...);
                minWidth?: (...) | (...) | (...);
                offsetX?: (...) | (...) | (...);
                offsetY?: (...) | (...) | (...);
                rounded?: (...) | (...) | (...) | (...);
                textColor?: (...) | (...);
                theme?: (...) | (...);
                width?: (...) | (...) | (...);
            } & {
                $children?: (...) | (...) | (...);
                v-slots?: (...) | (...);
            } & {
                v-slot:badge?: (...) | (...) | (...);
                v-slot:default?: (...) | (...) | (...);
            }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, {
                bordered: boolean;
                dot: boolean;
                floating: boolean;
                inline: boolean;
                label: string;
                location: Anchor | null;
                modelValue: boolean;
                rounded: string | number | boolean;
                style: StyleValue;
                tag: string | JSXComponent;
                tile: boolean;
                transition: string | boolean | (...) | null;
            }, {}, string, SlotsType<Partial<{
                badge: ...;
                default: ...;
            }>>, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & FilterPropsOptions<{
                bordered: BooleanConstructor;
                class: PropType<ClassValue>;
                color: StringConstructor;
                content: (...)[];
                dot: BooleanConstructor;
                floating: BooleanConstructor;
                height: (...)[];
                icon: PropType<IconValue>;
                inline: BooleanConstructor;
                label: {
                    default: string;
                    type: StringConstructor;
                };
                location: {
                    default: NonNullable<(...)>;
                    type: PropType<(...)>;
                };
                max: (...)[];
                maxHeight: (...)[];
                maxWidth: (...)[];
                minHeight: (...)[];
                minWidth: (...)[];
                modelValue: {
                    default: boolean;
                    type: BooleanConstructor;
                };
                offsetX: (...)[];
                offsetY: (...)[];
                rounded: {
                    default: undefined;
                    type: (...)[];
                };
                style: {
                    default: null;
                    type: PropType<(...)>;
                };
                tag: {
                    default: string;
                    type: PropType<(...)>;
                };
                textColor: StringConstructor;
                theme: StringConstructor;
                tile: BooleanConstructor;
                transition: {
                    default: NonNullable<(...)>;
                    type: PropType<(...)>;
                };
                width: (...)[];
            }, ExtractPropTypes<{
                bordered: BooleanConstructor;
                class: PropType<(...)>;
                color: StringConstructor;
                content: (...)[];
                dot: BooleanConstructor;
                floating: BooleanConstructor;
                height: (...)[];
                icon: PropType<(...)>;
                inline: BooleanConstructor;
                label: {
                    default: ...;
                    type: ...;
                };
                location: {
                    default: ...;
                    type: ...;
                };
                max: (...)[];
                maxHeight: (...)[];
                maxWidth: (...)[];
                minHeight: (...)[];
                minWidth: (...)[];
                modelValue: {
                    default: ...;
                    type: ...;
                };
                offsetX: (...)[];
                offsetY: (...)[];
                rounded: {
                    default: ...;
                    type: ...;
                };
                style: {
                    default: ...;
                    type: ...;
                };
                tag: {
                    default: ...;
                    type: ...;
                };
                textColor: StringConstructor;
                theme: StringConstructor;
                tile: BooleanConstructor;
                transition: {
                    default: ...;
                    type: ...;
                };
                width: (...)[];
            }>>;
            VTooltip: {
                __isFragment?: never;
                __isSuspense?: never;
                __isTeleport?: never;
                new (...args): CreateComponentPublicInstanceWithMixins<{
                    activatorProps: ...;
                    closeOnBack: ...;
                    closeOnContentClick: ...;
                    contained: ...;
                    disabled: ...;
                    eager: ...;
                    interactive: ...;
                    location: ...;
                    locationStrategy: ...;
                    minWidth: ...;
                    modelValue: ...;
                    noClickAnimation: ...;
                    offset: ...;
                    openOnClick: ...;
                    openOnHover: ...;
                    origin: ...;
                    scrim: ...;
                    scrollStrategy: ...;
                    style: ...;
                    transition: ...;
                    zIndex: ...;
                } & {
                    activator?: ...;
                    attach?: ...;
                    class?: ...;
                    closeDelay?: ...;
                    contentClass?: ...;
                    contentProps?: ...;
                    height?: ...;
                    id?: ...;
                    maxHeight?: ...;
                    maxWidth?: ...;
                    minHeight?: ...;
                    opacity?: ...;
                    openDelay?: ...;
                    openOnFocus?: ...;
                    target?: ...;
                    text?: ...;
                    theme?: ...;
                    width?: ...;
                } & {
                    $children?: ...;
                    v-slots?: ...;
                } & {
                    v-slot:activator?: ...;
                    v-slot:default?: ...;
                } & {
                    onUpdate:modelValue?: ...;
                }, Omit<(...), (...)> & {
                    _allExposed: ...;
                }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
                    update:modelValue: ((value) => ...);
                }, VNodeProps & AllowedComponentProps & ComponentCustomProps, {
                    activatorProps: Record<(...), (...)>;
                    closeOnBack: boolean;
                    closeOnContentClick: boolean;
                    contained: boolean;
                    disabled: boolean;
                    eager: boolean;
                    interactive: boolean;
                    location: Anchor;
                    locationStrategy: (...) | (...) | (...);
                    minWidth: (...) | (...);
                    modelValue: boolean;
                    noClickAnimation: boolean;
                    offset: (...) | (...) | (...) | (...);
                    openOnClick: boolean;
                    openOnFocus: boolean;
                    openOnHover: boolean;
                    origin: (...) | (...) | (...);
                    scrim: (...) | (...);
                    scrollStrategy: (...) | (...) | (...) | (...) | (...);
                    style: StyleValue;
                    transition: (...) | (...) | (...) | (...);
                    zIndex: (...) | (...);
                }, true, {}, SlotsType<Partial<(...)>>, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
                    B: {};
                    C: {};
                    D: {};
                    Defaults: {};
                    M: {};
                    P: {};
                }, {
                    activatorProps: ...;
                    closeOnBack: ...;
                    closeOnContentClick: ...;
                    contained: ...;
                    disabled: ...;
                    eager: ...;
                    interactive: ...;
                    location: ...;
                    locationStrategy: ...;
                    minWidth: ...;
                    modelValue: ...;
                    noClickAnimation: ...;
                    offset: ...;
                    openOnClick: ...;
                    openOnHover: ...;
                    origin: ...;
                    scrim: ...;
                    scrollStrategy: ...;
                    style: ...;
                    transition: ...;
                    zIndex: ...;
                } & {
                    activator?: ...;
                    attach?: ...;
                    class?: ...;
                    closeDelay?: ...;
                    contentClass?: ...;
                    contentProps?: ...;
                    height?: ...;
                    id?: ...;
                    maxHeight?: ...;
                    maxWidth?: ...;
                    minHeight?: ...;
                    opacity?: ...;
                    openDelay?: ...;
                    openOnFocus?: ...;
                    target?: ...;
                    text?: ...;
                    theme?: ...;
                    width?: ...;
                } & {
                    $children?: ...;
                    v-slots?: ...;
                } & {
                    v-slot:activator?: ...;
                    v-slot:default?: ...;
                } & {
                    onUpdate:modelValue?: ...;
                }, Omit<(...), (...)> & {
                    _allExposed: ...;
                }, {}, {}, {}, {
                    activatorProps: Record<(...), (...)>;
                    closeOnBack: boolean;
                    closeOnContentClick: boolean;
                    contained: boolean;
                    disabled: boolean;
                    eager: boolean;
                    interactive: boolean;
                    location: Anchor;
                    locationStrategy: (...) | (...) | (...);
                    minWidth: (...) | (...);
                    modelValue: boolean;
                    noClickAnimation: boolean;
                    offset: (...) | (...) | (...) | (...);
                    openOnClick: boolean;
                    openOnFocus: boolean;
                    openOnHover: boolean;
                    origin: (...) | (...) | (...);
                    scrim: (...) | (...);
                    scrollStrategy: (...) | (...) | (...) | (...) | (...);
                    style: StyleValue;
                    transition: (...) | (...) | (...) | (...);
                    zIndex: (...) | (...);
                }>;
            } & ComponentOptionsBase<{
                activatorProps: Record<(...), (...)>;
                closeOnBack: boolean;
                closeOnContentClick: boolean;
                contained: boolean;
                disabled: boolean;
                eager: boolean;
                interactive: boolean;
                location: Anchor;
                locationStrategy: (...) | (...) | (...);
                minWidth: (...) | (...);
                modelValue: boolean;
                noClickAnimation: boolean;
                offset: (...) | (...) | (...) | (...);
                openOnClick: boolean;
                openOnHover: boolean;
                origin: (...) | (...) | (...);
                scrim: (...) | (...);
                scrollStrategy: (...) | (...) | (...) | (...) | (...);
                style: StyleValue;
                transition: (...) | (...) | (...) | (...);
                zIndex: (...) | (...);
            } & {
                activator?: (...) | (...) | (...) | (...) | (...);
                attach?: (...) | (...) | (...) | (...);
                class?: any;
                closeDelay?: (...) | (...) | (...);
                contentClass?: any;
                contentProps?: any;
                height?: (...) | (...) | (...);
                id?: (...) | (...);
                maxHeight?: (...) | (...) | (...);
                maxWidth?: (...) | (...) | (...);
                minHeight?: (...) | (...) | (...);
                opacity?: (...) | (...) | (...);
                openDelay?: (...) | (...) | (...);
                openOnFocus?: (...) | (...);
                target?: (...) | (...) | (...) | (...) | (...) | (...) | (...);
                text?: (...) | (...);
                theme?: (...) | (...);
                width?: (...) | (...) | (...);
            } & {
                $children?: (...) | (...) | (...);
                v-slots?: (...) | (...);
            } & {
                v-slot:activator?: (...) | (...) | (...);
                v-slot:default?: (...) | (...) | (...);
            } & {
                onUpdate:modelValue?: (...) | (...);
            }, Omit<Omit<(...), (...)>, `$${(...)}`> & {
                _allExposed: (...) | (...);
            }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
                update:modelValue: ((value) => true);
            }, string, {
                activatorProps: Record<string, any>;
                closeOnBack: boolean;
                closeOnContentClick: boolean;
                contained: boolean;
                disabled: boolean;
                eager: boolean;
                interactive: boolean;
                location: Anchor;
                locationStrategy: "connected" | "static" | LocationStrategyFunction;
                minWidth: string | number;
                modelValue: boolean;
                noClickAnimation: boolean;
                offset: string | number | (...)[] | undefined;
                openOnClick: boolean;
                openOnFocus: boolean;
                openOnHover: boolean;
                origin: "auto" | Anchor | "overlap";
                scrim: string | boolean;
                scrollStrategy: "none" | "block" | "close" | ScrollStrategyFunction | "reposition";
                style: StyleValue;
                transition: string | boolean | (...) | null;
                zIndex: string | number;
            }, {}, string, SlotsType<Partial<{
                activator: ...;
                default: ...;
            }>>, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & FilterPropsOptions<{
                activator: PropType<(...) | (...) | (...) | (...) | (...)>;
                activatorProps: {
                    default: (() => ...);
                    type: PropType<(...)>;
                };
                attach: PropType<(...) | (...) | (...)>;
                class: PropType<ClassValue>;
                closeDelay: (...)[];
                closeOnBack: Omit<(...), (...)> & {
                    default: ...;
                    type: ...;
                };
                closeOnContentClick: BooleanConstructor;
                contained: BooleanConstructor;
                contentClass: null;
                contentProps: null;
                disabled: BooleanConstructor;
                eager: {
                    default: boolean;
                    type: PropType<(...)>;
                };
                height: (...)[];
                id: StringConstructor;
                interactive: BooleanConstructor;
                location: Omit<(...), (...)> & {
                    default: ...;
                    type: ...;
                };
                locationStrategy: Omit<(...), (...)> & {
                    default: ...;
                    type: ...;
                };
                maxHeight: (...)[];
                maxWidth: (...)[];
                minHeight: (...)[];
                minWidth: {
                    default: NonNullable<(...)>;
                    type: PropType<(...)>;
                };
                modelValue: BooleanConstructor;
                noClickAnimation: BooleanConstructor;
                offset: {
                    default: NonNullable<(...)>;
                    type: PropType<(...)>;
                };
                opacity: (...)[];
                openDelay: (...)[];
                openOnClick: Omit<(...), (...)> & {
                    default: ...;
                    type: ...;
                };
                openOnFocus: {
                    default: undefined;
                    type: BooleanConstructor;
                };
                openOnHover: {
                    default: boolean;
                    type: PropType<(...)>;
                };
                origin: Omit<(...), (...)> & {
                    default: ...;
                    type: ...;
                };
                scrim: Omit<(...), (...)> & {
                    default: ...;
                    type: ...;
                };
                scrollStrategy: Omit<(...), (...)> & {
                    default: ...;
                    type: ...;
                };
                style: {
                    default: null;
                    type: PropType<(...)>;
                };
                target: PropType<(...) | (...) | (...) | (...) | (...) | (...) | (...)>;
                text: StringConstructor;
                theme: StringConstructor;
                transition: {
                    default: (...) | (...);
                    type: PropType<(...)>;
                };
                width: (...)[];
                zIndex: {
                    default: number;
                    type: (...)[];
                };
            }, ExtractPropTypes<{
                activator: PropType<(...)>;
                activatorProps: {
                    default: ...;
                    type: ...;
                };
                attach: PropType<(...)>;
                class: PropType<(...)>;
                closeDelay: (...)[];
                closeOnBack: (...) & (...);
                closeOnContentClick: BooleanConstructor;
                contained: BooleanConstructor;
                contentClass: null;
                contentProps: null;
                disabled: BooleanConstructor;
                eager: {
                    default: ...;
                    type: ...;
                };
                height: (...)[];
                id: StringConstructor;
                interactive: BooleanConstructor;
                location: (...) & (...);
                locationStrategy: (...) & (...);
                maxHeight: (...)[];
                maxWidth: (...)[];
                minHeight: (...)[];
                minWidth: {
                    default: ...;
                    type: ...;
                };
                modelValue: BooleanConstructor;
                noClickAnimation: BooleanConstructor;
                offset: {
                    default: ...;
                    type: ...;
                };
                opacity: (...)[];
                openDelay: (...)[];
                openOnClick: (...) & (...);
                openOnFocus: {
                    default: ...;
                    type: ...;
                };
                openOnHover: {
                    default: ...;
                    type: ...;
                };
                origin: (...) & (...);
                scrim: (...) & (...);
                scrollStrategy: (...) & (...);
                style: {
                    default: ...;
                    type: ...;
                };
                target: PropType<(...)>;
                text: StringConstructor;
                theme: StringConstructor;
                transition: {
                    default: ...;
                    type: ...;
                };
                width: (...)[];
                zIndex: {
                    default: ...;
                    type: ...;
                };
            }>>;
        }, {}, string, ComponentProvideOptions, true, {}, any>;
    }, {}, string, ComponentProvideOptions, true, {}, any>;
}, {}, string, ComponentProvideOptions, true, {}, any>

Type declaration

  • Optional cells?: JsonFormsCellRendererRegistryEntry[]
  • Optional config?: any
  • Optional enabled?: boolean
  • path: string
  • Optional renderers?: JsonFormsRendererRegistryEntry[]
  • schema: JsonSchema
  • uischema: ControlElement

Type declaration

  • appliedOptions: ComputedRef<any>
  • childLabelForIndex: ((index) => string)
      • (index): string
      • Parameters

        • index: number | null

        Returns string

  • computedLabel: ComputedRef<string>
  • control: ComputedRef<{
        arraySchema: NonNullable<JsonSchema>;
        cells: JsonFormsCellRendererRegistryEntry[];
        childErrors: ErrorObject[];
        config: any;
        data: any;
        description: string;
        enabled: boolean;
        errors: string;
        i18nKeyPrefix: string;
        id: string;
        label: string;
        path: string;
        renderers: JsonFormsRendererRegistryEntry[];
        required: NonNullable<boolean | undefined>;
        rootSchema: NonNullable<JsonSchema>;
        schema: NonNullable<JsonSchema>;
        uischema: ControlElement;
        uischemas: JsonFormsUISchemaRegistryEntry[];
        visible: boolean;
    }> & ComputedRef<{
        childErrors: ErrorObject[];
        config: any;
        data: any;
        i18nKeyPrefix: string;
        label: string;
        required: boolean;
        schema: JsonSchema;
        uischema: UISchemaElement;
    } & {
        childErrors: ErrorObject<string, Record<string, any>, unknown>[];
        translations: ArrayTranslations;
    }>
  • icons: {
        current: ComputedRef<IconAliases>;
    }
  • rawChildErrors: ErrorObject<string, Record<string, any>, unknown>[]
  • styles: Styles
  • vuetifyProps: ((path) => any)
      • (path): any
      • Parameters

        • path: string

        Returns any

  • addItem:function
    • Parameters

      • path: string
      • value: any

      Returns (() => void)

        • (): void
        • Returns void

  • moveDown?:function
    • Parameters

      • path: string
      • toMove: number

      Returns (() => void)

        • (): void
        • Returns void

  • moveUp?:function
    • Parameters

      • path: string
      • toMove: number

      Returns (() => void)

        • (): void
        • Returns void

  • removeItems?:function
    • Parameters

      • path: string
      • toDelete: number[]

      Returns (() => void)

        • (): void
        • Returns void

Type declaration

    Type declaration

    • dataLength:function
      • Returns number

    • validColumnProps:function
      • Returns string[]

    Type declaration

    • composePaths: ((path1, path2) => string)
        • (path1, path2): string
        • Parameters

          • path1: string
          • path2: string

          Returns string

    • createDefaultValue: ((schema, rootSchema) => any)
        • (schema, rootSchema): any
        • Parameters

          • schema: JsonSchema
          • rootSchema: JsonSchema

          Returns any

    • addButtonClick:function
      • Returns void

    • controlWithoutLabel:function
      • Parameters

        • scope: string

        Returns ControlElement

    • moveDownClick:function
      • Parameters

        • event: Event
        • toMove: number

        Returns void

    • moveUpClick:function
      • Parameters

        • event: Event
        • toMove: number

        Returns void

    • removeItemsClick:function
      • Parameters

        • event: Event
        • toDelete: number[]

        Returns void

    • resolveUiSchema:function
      • Parameters

        • propName: string

        Returns ControlElement

    • title:function
      • Parameters

        • prop: string

        Returns string

    Type declaration

      Type declaration

      • cells: JsonFormsCellRendererRegistryEntry[]
      • config: Record<string, any>
      • enabled: boolean
      • renderers: JsonFormsRendererRegistryEntry[]

      Type declaration

        Type declaration

        • DispatchRenderer: DefineComponent<ExtractPropTypes<{
              cells: {
                  default: undefined;
                  required: boolean;
                  type: PropType<JsonFormsCellRendererRegistryEntry[]>;
              };
              config: {
                  default: undefined;
                  required: boolean;
                  type: ObjectConstructor;
              };
              enabled: {
                  default: undefined;
                  required: false;
                  type: BooleanConstructor;
              };
              path: {
                  required: true;
                  type: StringConstructor;
              };
              renderers: {
                  default: undefined;
                  required: boolean;
                  type: PropType<JsonFormsRendererRegistryEntry[]>;
              };
              schema: {
                  required: true;
                  type: PropType<JsonSchema>;
              };
              uischema: {
                  required: true;
                  type: PropType<UISchemaElement>;
              };
          }>, {
              renderer: ComputedRef<{
                  cells: JsonFormsCellRendererRegistryEntry[];
                  config: any;
                  enabled: NonNullable<boolean | undefined>;
                  path: string;
                  renderers: JsonFormsRendererRegistryEntry[];
                  schema: NonNullable<JsonSchema | undefined>;
                  uischema: NonNullable<UISchemaElement | undefined>;
                  uischemas: JsonFormsUISchemaRegistryEntry[];
                  visible: NonNullable<boolean | undefined>;
              }>;
              rootSchema: ComputedRef<NonNullable<JsonSchema>>;
          }, {}, {
              determinedRenderer(): any;
          }, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<{
              cells: {
                  default: undefined;
                  required: boolean;
                  type: PropType<JsonFormsCellRendererRegistryEntry[]>;
              };
              config: {
                  default: undefined;
                  required: boolean;
                  type: ObjectConstructor;
              };
              enabled: {
                  default: undefined;
                  required: false;
                  type: BooleanConstructor;
              };
              path: {
                  required: true;
                  type: StringConstructor;
              };
              renderers: {
                  default: undefined;
                  required: boolean;
                  type: PropType<JsonFormsRendererRegistryEntry[]>;
              };
              schema: {
                  required: true;
                  type: PropType<JsonSchema>;
              };
              uischema: {
                  required: true;
                  type: PropType<UISchemaElement>;
              };
          }>> & Readonly<{}>, {
              cells: JsonFormsCellRendererRegistryEntry[];
              config: Record<string, any>;
              enabled: boolean;
              renderers: JsonFormsRendererRegistryEntry[];
          }, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>
        • VBtn: {
              __isFragment?: never;
              __isSuspense?: never;
              __isTeleport?: never;
              new (...args): CreateComponentPublicInstanceWithMixins<{
                  block: boolean;
                  density: Density;
                  disabled: boolean;
                  exact: boolean;
                  flat: boolean;
                  readonly: boolean;
                  replace: boolean;
                  ripple: boolean | {
                      class?: string;
                      keys?: number[];
                  } | undefined;
                  size: string | number;
                  slim: boolean;
                  stacked: boolean;
                  style: StyleValue;
                  symbol: any;
                  tag: string | JSXComponent;
                  tile: boolean;
                  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
              } & {
                  active?: boolean;
                  activeColor?: string;
                  appendIcon?: IconValue;
                  baseColor?: string;
                  border?: string | number | boolean;
                  class?: any;
                  color?: string;
                  elevation?: string | number;
                  height?: string | number;
                  href?: string;
                  icon?: boolean | IconValue;
                  loading?: string | boolean;
                  location?: Anchor | null;
                  maxHeight?: string | number;
                  maxWidth?: string | number;
                  minHeight?: string | number;
                  minWidth?: string | number;
                  position?: "fixed" | "absolute" | "relative" | "static" | "sticky";
                  prependIcon?: IconValue;
                  rounded?: string | number | boolean;
                  selectedClass?: string;
                  text?: string | number | boolean;
                  theme?: string;
                  to?: string | ObjectRenderer | ObjectRenderer;
                  value?: any;
                  width?: string | number;
              } & {
                  $children?: VNodeChild | (() => VNodeChild) | {
                      append?: ...;
                      default?: ...;
                      loader?: ...;
                      prepend?: ...;
                  };
                  v-slots?: {
                      append?: false | (...);
                      default?: false | (...);
                      loader?: false | (...);
                      prepend?: false | (...);
                  };
              } & {
                  v-slot:append?: false | (() => VNodeChild);
                  v-slot:default?: false | (() => VNodeChild);
                  v-slot:loader?: false | (() => VNodeChild);
                  v-slot:prepend?: false | (() => VNodeChild);
              } & {
                  onGroup:selected?: ((val) => any);
              }, {
                  group: GroupItemProvide | null;
              }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
                  group:selected: ((val) => true);
              }, VNodeProps & AllowedComponentProps & ComponentCustomProps, {
                  active: boolean;
                  block: boolean;
                  density: Density;
                  disabled: boolean;
                  exact: boolean;
                  flat: boolean;
                  readonly: boolean;
                  replace: boolean;
                  ripple: boolean | {
                      class?: string;
                      keys?: number[];
                  } | undefined;
                  rounded: string | number | boolean;
                  size: string | number;
                  slim: boolean;
                  stacked: boolean;
                  style: StyleValue;
                  symbol: any;
                  tag: string | JSXComponent;
                  text: string | number | boolean;
                  tile: boolean;
                  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
              }, true, {}, SlotsType<Partial<{
                  append: (() => VNode[]);
                  default: (() => VNode[]);
                  loader: (() => VNode[]);
                  prepend: (() => VNode[]);
              }>>, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
                  B: {};
                  C: {};
                  D: {};
                  Defaults: {};
                  M: {};
                  P: {};
              }, {
                  block: boolean;
                  density: Density;
                  disabled: boolean;
                  exact: boolean;
                  flat: boolean;
                  readonly: boolean;
                  replace: boolean;
                  ripple: boolean | {
                      class?: string;
                      keys?: number[];
                  } | undefined;
                  size: string | number;
                  slim: boolean;
                  stacked: boolean;
                  style: StyleValue;
                  symbol: any;
                  tag: string | JSXComponent;
                  tile: boolean;
                  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
              } & {
                  active?: boolean;
                  activeColor?: string;
                  appendIcon?: IconValue;
                  baseColor?: string;
                  border?: string | number | boolean;
                  class?: any;
                  color?: string;
                  elevation?: string | number;
                  height?: string | number;
                  href?: string;
                  icon?: boolean | IconValue;
                  loading?: string | boolean;
                  location?: Anchor | null;
                  maxHeight?: string | number;
                  maxWidth?: string | number;
                  minHeight?: string | number;
                  minWidth?: string | number;
                  position?: "fixed" | "absolute" | "relative" | "static" | "sticky";
                  prependIcon?: IconValue;
                  rounded?: string | number | boolean;
                  selectedClass?: string;
                  text?: string | number | boolean;
                  theme?: string;
                  to?: string | ObjectRenderer | ObjectRenderer;
                  value?: any;
                  width?: string | number;
              } & {
                  $children?: VNodeChild | (() => VNodeChild) | {
                      append?: ...;
                      default?: ...;
                      loader?: ...;
                      prepend?: ...;
                  };
                  v-slots?: {
                      append?: false | (...);
                      default?: false | (...);
                      loader?: false | (...);
                      prepend?: false | (...);
                  };
              } & {
                  v-slot:append?: false | (() => VNodeChild);
                  v-slot:default?: false | (() => VNodeChild);
                  v-slot:loader?: false | (() => VNodeChild);
                  v-slot:prepend?: false | (() => VNodeChild);
              } & {
                  onGroup:selected?: ((val) => any);
              }, {
                  group: GroupItemProvide | null;
              }, {}, {}, {}, {
                  active: boolean;
                  block: boolean;
                  density: Density;
                  disabled: boolean;
                  exact: boolean;
                  flat: boolean;
                  readonly: boolean;
                  replace: boolean;
                  ripple: boolean | {
                      class?: string;
                      keys?: number[];
                  } | undefined;
                  rounded: string | number | boolean;
                  size: string | number;
                  slim: boolean;
                  stacked: boolean;
                  style: StyleValue;
                  symbol: any;
                  tag: string | JSXComponent;
                  text: string | number | boolean;
                  tile: boolean;
                  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
              }>;
          } & ComponentOptionsBase<{
              block: boolean;
              density: Density;
              disabled: boolean;
              exact: boolean;
              flat: boolean;
              readonly: boolean;
              replace: boolean;
              ripple: boolean | {
                  class?: string;
                  keys?: number[];
              } | undefined;
              size: string | number;
              slim: boolean;
              stacked: boolean;
              style: StyleValue;
              symbol: any;
              tag: string | JSXComponent;
              tile: boolean;
              variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
          } & {
              active?: boolean;
              activeColor?: string;
              appendIcon?: IconValue;
              baseColor?: string;
              border?: string | number | boolean;
              class?: any;
              color?: string;
              elevation?: string | number;
              height?: string | number;
              href?: string;
              icon?: boolean | IconValue;
              loading?: string | boolean;
              location?: Anchor | null;
              maxHeight?: string | number;
              maxWidth?: string | number;
              minHeight?: string | number;
              minWidth?: string | number;
              position?: "fixed" | "absolute" | "relative" | "static" | "sticky";
              prependIcon?: IconValue;
              rounded?: string | number | boolean;
              selectedClass?: string;
              text?: string | number | boolean;
              theme?: string;
              to?: string | ObjectRenderer | ObjectRenderer;
              value?: any;
              width?: string | number;
          } & {
              $children?: VNodeChild | (() => VNodeChild) | {
                  append?: (() => ...);
                  default?: (() => ...);
                  loader?: (() => ...);
                  prepend?: (() => ...);
              };
              v-slots?: {
                  append?: false | (() => ...);
                  default?: false | (() => ...);
                  loader?: false | (() => ...);
                  prepend?: false | (() => ...);
              };
          } & {
              v-slot:append?: false | (() => VNodeChild);
              v-slot:default?: false | (() => VNodeChild);
              v-slot:loader?: false | (() => VNodeChild);
              v-slot:prepend?: false | (() => VNodeChild);
          } & {
              onGroup:selected?: ((val) => any);
          }, {
              group: GroupItemProvide | null;
          }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
              group:selected: ((val) => true);
          }, string, {
              active: boolean;
              block: boolean;
              density: Density;
              disabled: boolean;
              exact: boolean;
              flat: boolean;
              readonly: boolean;
              replace: boolean;
              ripple: boolean | {
                  class?: string;
                  keys?: number[];
              } | undefined;
              rounded: string | number | boolean;
              size: string | number;
              slim: boolean;
              stacked: boolean;
              style: StyleValue;
              symbol: any;
              tag: string | JSXComponent;
              text: string | number | boolean;
              tile: boolean;
              variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
          }, {}, string, SlotsType<Partial<{
              append: (() => VNode[]);
              default: (() => VNode[]);
              loader: (() => VNode[]);
              prepend: (() => VNode[]);
          }>>, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & FilterPropsOptions<{
              active: {
                  default: undefined;
                  type: BooleanConstructor;
              };
              activeColor: StringConstructor;
              appendIcon: PropType<IconValue>;
              baseColor: StringConstructor;
              block: BooleanConstructor;
              border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
              class: PropType<ClassValue>;
              color: StringConstructor;
              density: {
                  default: string;
                  type: PropType<Density>;
                  validator: ((v) => boolean);
              };
              disabled: BooleanConstructor;
              elevation: {
                  type: (StringConstructor | NumberConstructor)[];
                  validator(v): boolean;
              };
              exact: BooleanConstructor;
              flat: BooleanConstructor;
              height: (StringConstructor | NumberConstructor)[];
              href: StringConstructor;
              icon: PropType<boolean | IconValue>;
              loading: (StringConstructor | BooleanConstructor)[];
              location: PropType<Anchor | null>;
              maxHeight: (StringConstructor | NumberConstructor)[];
              maxWidth: (StringConstructor | NumberConstructor)[];
              minHeight: (StringConstructor | NumberConstructor)[];
              minWidth: (StringConstructor | NumberConstructor)[];
              position: {
                  type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
                  validator: ((v) => boolean);
              };
              prependIcon: PropType<IconValue>;
              readonly: BooleanConstructor;
              replace: BooleanConstructor;
              ripple: {
                  default: boolean;
                  type: PropType<RippleDirectiveBinding["value"]>;
              };
              rounded: {
                  default: undefined;
                  type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
              };
              selectedClass: StringConstructor;
              size: {
                  default: string;
                  type: (StringConstructor | NumberConstructor)[];
              };
              slim: BooleanConstructor;
              stacked: BooleanConstructor;
              style: {
                  default: null;
                  type: PropType<StyleValue>;
              };
              symbol: {
                  default: InjectionKey<GroupProvide>;
                  type: null;
              };
              tag: Omit<{
                  default: string;
                  type: PropType<string | JSXComponent>;
              }, "type" | "default"> & {
                  default: NonNullable<string | JSXComponent>;
                  type: PropType<string | JSXComponent>;
              };
              text: {
                  default: undefined;
                  type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
              };
              theme: StringConstructor;
              tile: BooleanConstructor;
              to: PropType<ObjectRenderer>;
              value: null;
              variant: Omit<{
                  default: string;
                  type: PropType<Variant>;
                  validator: ((v) => boolean);
              }, "type" | "default"> & {
                  default: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
                  type: PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
              };
              width: (StringConstructor | NumberConstructor)[];
          }, ExtractPropTypes<{
              active: {
                  default: undefined;
                  type: BooleanConstructor;
              };
              activeColor: StringConstructor;
              appendIcon: PropType<IconValue>;
              baseColor: StringConstructor;
              block: BooleanConstructor;
              border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
              class: PropType<ClassValue>;
              color: StringConstructor;
              density: {
                  default: string;
                  type: PropType<Density>;
                  validator: ((v) => boolean);
              };
              disabled: BooleanConstructor;
              elevation: {
                  type: (StringConstructor | NumberConstructor)[];
                  validator(v): boolean;
              };
              exact: BooleanConstructor;
              flat: BooleanConstructor;
              height: (StringConstructor | NumberConstructor)[];
              href: StringConstructor;
              icon: PropType<boolean | IconValue>;
              loading: (StringConstructor | BooleanConstructor)[];
              location: PropType<Anchor | null>;
              maxHeight: (StringConstructor | NumberConstructor)[];
              maxWidth: (StringConstructor | NumberConstructor)[];
              minHeight: (StringConstructor | NumberConstructor)[];
              minWidth: (StringConstructor | NumberConstructor)[];
              position: {
                  type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
                  validator: ((v) => boolean);
              };
              prependIcon: PropType<IconValue>;
              readonly: BooleanConstructor;
              replace: BooleanConstructor;
              ripple: {
                  default: boolean;
                  type: PropType<RippleDirectiveBinding["value"]>;
              };
              rounded: {
                  default: undefined;
                  type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
              };
              selectedClass: StringConstructor;
              size: {
                  default: string;
                  type: (StringConstructor | NumberConstructor)[];
              };
              slim: BooleanConstructor;
              stacked: BooleanConstructor;
              style: {
                  default: null;
                  type: PropType<StyleValue>;
              };
              symbol: {
                  default: InjectionKey<GroupProvide>;
                  type: null;
              };
              tag: Omit<{
                  default: string;
                  type: PropType<(...) | (...)>;
              }, "type" | "default"> & {
                  default: NonNullable<string | JSXComponent>;
                  type: PropType<string | JSXComponent>;
              };
              text: {
                  default: undefined;
                  type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
              };
              theme: StringConstructor;
              tile: BooleanConstructor;
              to: PropType<ObjectRenderer>;
              value: null;
              variant: Omit<{
                  default: string;
                  type: PropType<Variant>;
                  validator: ((v) => boolean);
              }, "type" | "default"> & {
                  default: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
                  type: PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
              };
              width: (StringConstructor | NumberConstructor)[];
          }>>
        • VCard: {
              __isFragment?: never;
              __isSuspense?: never;
              __isTeleport?: never;
              new (...args): CreateComponentPublicInstanceWithMixins<{
                  density: Density;
                  disabled: boolean;
                  exact: boolean;
                  flat: boolean;
                  hover: boolean;
                  replace: boolean;
                  ripple: boolean | {
                      class?: string;
                      keys?: number[];
                  } | undefined;
                  style: StyleValue;
                  tag: string | JSXComponent;
                  tile: boolean;
                  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
              } & {
                  appendAvatar?: string;
                  appendIcon?: IconValue;
                  border?: string | number | boolean;
                  class?: any;
                  color?: string;
                  elevation?: string | number;
                  height?: string | number;
                  href?: string;
                  image?: string;
                  link?: boolean;
                  loading?: string | boolean;
                  location?: Anchor | null;
                  maxHeight?: string | number;
                  maxWidth?: string | number;
                  minHeight?: string | number;
                  minWidth?: string | number;
                  position?: "fixed" | "absolute" | "relative" | "static" | "sticky";
                  prependAvatar?: string;
                  prependIcon?: IconValue;
                  rounded?: string | number | boolean;
                  subtitle?: string | number | boolean;
                  text?: string | number | boolean;
                  theme?: string;
                  title?: string | number | boolean;
                  to?: string | ObjectRenderer | ObjectRenderer;
                  width?: string | number;
              } & {
                  $children?: VNodeChild | (() => VNodeChild) | {
                      actions?: ...;
                      append?: ...;
                      default?: ...;
                      image?: ...;
                      item?: ...;
                      loader?: ...;
                      prepend?: ...;
                      subtitle?: ...;
                      text?: ...;
                      title?: ...;
                  };
                  v-slots?: {
                      actions?: false | (...);
                      append?: false | (...);
                      default?: false | (...);
                      image?: false | (...);
                      item?: false | (...);
                      loader?: false | (...);
                      prepend?: false | (...);
                      subtitle?: false | (...);
                      text?: false | (...);
                      title?: false | (...);
                  };
              } & {
                  v-slot:actions?: false | (() => VNodeChild);
                  v-slot:append?: false | (() => VNodeChild);
                  v-slot:default?: false | (() => VNodeChild);
                  v-slot:image?: false | (() => VNodeChild);
                  v-slot:item?: false | (() => VNodeChild);
                  v-slot:loader?: false | ((arg) => VNodeChild);
                  v-slot:prepend?: false | (() => VNodeChild);
                  v-slot:subtitle?: false | (() => VNodeChild);
                  v-slot:text?: false | (() => VNodeChild);
                  v-slot:title?: false | (() => VNodeChild);
              }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, VNodeProps & AllowedComponentProps & ComponentCustomProps, {
                  density: Density;
                  disabled: boolean;
                  exact: boolean;
                  flat: boolean;
                  hover: boolean;
                  link: boolean;
                  replace: boolean;
                  ripple: boolean | {
                      class?: string;
                      keys?: number[];
                  } | undefined;
                  rounded: string | number | boolean;
                  style: StyleValue;
                  subtitle: string | number | boolean;
                  tag: string | JSXComponent;
                  text: string | number | boolean;
                  tile: boolean;
                  title: string | number | boolean;
                  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
              }, true, {}, SlotsType<Partial<{
                  actions: (() => VNode[]);
                  append: (() => VNode[]);
                  default: (() => VNode[]);
                  image: (() => VNode[]);
                  item: (() => VNode[]);
                  loader: ((arg) => VNode[]);
                  prepend: (() => VNode[]);
                  subtitle: (() => VNode[]);
                  text: (() => VNode[]);
                  title: (() => VNode[]);
              }>>, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
                  B: {};
                  C: {};
                  D: {};
                  Defaults: {};
                  M: {};
                  P: {};
              }, {
                  density: Density;
                  disabled: boolean;
                  exact: boolean;
                  flat: boolean;
                  hover: boolean;
                  replace: boolean;
                  ripple: boolean | {
                      class?: string;
                      keys?: number[];
                  } | undefined;
                  style: StyleValue;
                  tag: string | JSXComponent;
                  tile: boolean;
                  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
              } & {
                  appendAvatar?: string;
                  appendIcon?: IconValue;
                  border?: string | number | boolean;
                  class?: any;
                  color?: string;
                  elevation?: string | number;
                  height?: string | number;
                  href?: string;
                  image?: string;
                  link?: boolean;
                  loading?: string | boolean;
                  location?: Anchor | null;
                  maxHeight?: string | number;
                  maxWidth?: string | number;
                  minHeight?: string | number;
                  minWidth?: string | number;
                  position?: "fixed" | "absolute" | "relative" | "static" | "sticky";
                  prependAvatar?: string;
                  prependIcon?: IconValue;
                  rounded?: string | number | boolean;
                  subtitle?: string | number | boolean;
                  text?: string | number | boolean;
                  theme?: string;
                  title?: string | number | boolean;
                  to?: string | ObjectRenderer | ObjectRenderer;
                  width?: string | number;
              } & {
                  $children?: VNodeChild | (() => VNodeChild) | {
                      actions?: ...;
                      append?: ...;
                      default?: ...;
                      image?: ...;
                      item?: ...;
                      loader?: ...;
                      prepend?: ...;
                      subtitle?: ...;
                      text?: ...;
                      title?: ...;
                  };
                  v-slots?: {
                      actions?: false | (...);
                      append?: false | (...);
                      default?: false | (...);
                      image?: false | (...);
                      item?: false | (...);
                      loader?: false | (...);
                      prepend?: false | (...);
                      subtitle?: false | (...);
                      text?: false | (...);
                      title?: false | (...);
                  };
              } & {
                  v-slot:actions?: false | (() => VNodeChild);
                  v-slot:append?: false | (() => VNodeChild);
                  v-slot:default?: false | (() => VNodeChild);
                  v-slot:image?: false | (() => VNodeChild);
                  v-slot:item?: false | (() => VNodeChild);
                  v-slot:loader?: false | ((arg) => VNodeChild);
                  v-slot:prepend?: false | (() => VNodeChild);
                  v-slot:subtitle?: false | (() => VNodeChild);
                  v-slot:text?: false | (() => VNodeChild);
                  v-slot:title?: false | (() => VNodeChild);
              }, {}, {}, {}, {}, {
                  density: Density;
                  disabled: boolean;
                  exact: boolean;
                  flat: boolean;
                  hover: boolean;
                  link: boolean;
                  replace: boolean;
                  ripple: boolean | {
                      class?: string;
                      keys?: number[];
                  } | undefined;
                  rounded: string | number | boolean;
                  style: StyleValue;
                  subtitle: string | number | boolean;
                  tag: string | JSXComponent;
                  text: string | number | boolean;
                  tile: boolean;
                  title: string | number | boolean;
                  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
              }>;
          } & ComponentOptionsBase<{
              density: Density;
              disabled: boolean;
              exact: boolean;
              flat: boolean;
              hover: boolean;
              replace: boolean;
              ripple: boolean | {
                  class?: string;
                  keys?: number[];
              } | undefined;
              style: StyleValue;
              tag: string | JSXComponent;
              tile: boolean;
              variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
          } & {
              appendAvatar?: string;
              appendIcon?: IconValue;
              border?: string | number | boolean;
              class?: any;
              color?: string;
              elevation?: string | number;
              height?: string | number;
              href?: string;
              image?: string;
              link?: boolean;
              loading?: string | boolean;
              location?: Anchor | null;
              maxHeight?: string | number;
              maxWidth?: string | number;
              minHeight?: string | number;
              minWidth?: string | number;
              position?: "fixed" | "absolute" | "relative" | "static" | "sticky";
              prependAvatar?: string;
              prependIcon?: IconValue;
              rounded?: string | number | boolean;
              subtitle?: string | number | boolean;
              text?: string | number | boolean;
              theme?: string;
              title?: string | number | boolean;
              to?: string | ObjectRenderer | ObjectRenderer;
              width?: string | number;
          } & {
              $children?: VNodeChild | (() => VNodeChild) | {
                  actions?: (() => ...);
                  append?: (() => ...);
                  default?: (() => ...);
                  image?: (() => ...);
                  item?: (() => ...);
                  loader?: ((arg) => ...);
                  prepend?: (() => ...);
                  subtitle?: (() => ...);
                  text?: (() => ...);
                  title?: (() => ...);
              };
              v-slots?: {
                  actions?: false | (() => ...);
                  append?: false | (() => ...);
                  default?: false | (() => ...);
                  image?: false | (() => ...);
                  item?: false | (() => ...);
                  loader?: false | ((arg) => ...);
                  prepend?: false | (() => ...);
                  subtitle?: false | (() => ...);
                  text?: false | (() => ...);
                  title?: false | (() => ...);
              };
          } & {
              v-slot:actions?: false | (() => VNodeChild);
              v-slot:append?: false | (() => VNodeChild);
              v-slot:default?: false | (() => VNodeChild);
              v-slot:image?: false | (() => VNodeChild);
              v-slot:item?: false | (() => VNodeChild);
              v-slot:loader?: false | ((arg) => VNodeChild);
              v-slot:prepend?: false | (() => VNodeChild);
              v-slot:subtitle?: false | (() => VNodeChild);
              v-slot:text?: false | (() => VNodeChild);
              v-slot:title?: false | (() => VNodeChild);
          }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, {
              density: Density;
              disabled: boolean;
              exact: boolean;
              flat: boolean;
              hover: boolean;
              link: boolean;
              replace: boolean;
              ripple: boolean | {
                  class?: string;
                  keys?: number[];
              } | undefined;
              rounded: string | number | boolean;
              style: StyleValue;
              subtitle: string | number | boolean;
              tag: string | JSXComponent;
              text: string | number | boolean;
              tile: boolean;
              title: string | number | boolean;
              variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
          }, {}, string, SlotsType<Partial<{
              actions: (() => VNode[]);
              append: (() => VNode[]);
              default: (() => VNode[]);
              image: (() => VNode[]);
              item: (() => VNode[]);
              loader: ((arg) => VNode[]);
              prepend: (() => VNode[]);
              subtitle: (() => VNode[]);
              text: (() => VNode[]);
              title: (() => VNode[]);
          }>>, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & FilterPropsOptions<{
              appendAvatar: StringConstructor;
              appendIcon: PropType<IconValue>;
              border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
              class: PropType<ClassValue>;
              color: StringConstructor;
              density: {
                  default: string;
                  type: PropType<Density>;
                  validator: ((v) => boolean);
              };
              disabled: BooleanConstructor;
              elevation: {
                  type: (StringConstructor | NumberConstructor)[];
                  validator(v): boolean;
              };
              exact: BooleanConstructor;
              flat: BooleanConstructor;
              height: (StringConstructor | NumberConstructor)[];
              hover: BooleanConstructor;
              href: StringConstructor;
              image: StringConstructor;
              link: {
                  default: undefined;
                  type: BooleanConstructor;
              };
              loading: (StringConstructor | BooleanConstructor)[];
              location: PropType<Anchor | null>;
              maxHeight: (StringConstructor | NumberConstructor)[];
              maxWidth: (StringConstructor | NumberConstructor)[];
              minHeight: (StringConstructor | NumberConstructor)[];
              minWidth: (StringConstructor | NumberConstructor)[];
              position: {
                  type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
                  validator: ((v) => boolean);
              };
              prependAvatar: StringConstructor;
              prependIcon: PropType<IconValue>;
              replace: BooleanConstructor;
              ripple: {
                  default: boolean;
                  type: PropType<RippleDirectiveBinding["value"]>;
              };
              rounded: {
                  default: undefined;
                  type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
              };
              style: {
                  default: null;
                  type: PropType<StyleValue>;
              };
              subtitle: {
                  default: undefined;
                  type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
              };
              tag: {
                  default: string;
                  type: PropType<string | JSXComponent>;
              };
              text: {
                  default: undefined;
                  type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
              };
              theme: StringConstructor;
              tile: BooleanConstructor;
              title: {
                  default: undefined;
                  type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
              };
              to: PropType<ObjectRenderer>;
              variant: Omit<{
                  default: string;
                  type: PropType<Variant>;
                  validator: ((v) => boolean);
              }, "type" | "default"> & {
                  default: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
                  type: PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
              };
              width: (StringConstructor | NumberConstructor)[];
          }, ExtractPropTypes<{
              appendAvatar: StringConstructor;
              appendIcon: PropType<IconValue>;
              border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
              class: PropType<ClassValue>;
              color: StringConstructor;
              density: {
                  default: string;
                  type: PropType<Density>;
                  validator: ((v) => boolean);
              };
              disabled: BooleanConstructor;
              elevation: {
                  type: (StringConstructor | NumberConstructor)[];
                  validator(v): boolean;
              };
              exact: BooleanConstructor;
              flat: BooleanConstructor;
              height: (StringConstructor | NumberConstructor)[];
              hover: BooleanConstructor;
              href: StringConstructor;
              image: StringConstructor;
              link: {
                  default: undefined;
                  type: BooleanConstructor;
              };
              loading: (StringConstructor | BooleanConstructor)[];
              location: PropType<Anchor | null>;
              maxHeight: (StringConstructor | NumberConstructor)[];
              maxWidth: (StringConstructor | NumberConstructor)[];
              minHeight: (StringConstructor | NumberConstructor)[];
              minWidth: (StringConstructor | NumberConstructor)[];
              position: {
                  type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
                  validator: ((v) => boolean);
              };
              prependAvatar: StringConstructor;
              prependIcon: PropType<IconValue>;
              replace: BooleanConstructor;
              ripple: {
                  default: boolean;
                  type: PropType<RippleDirectiveBinding["value"]>;
              };
              rounded: {
                  default: undefined;
                  type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
              };
              style: {
                  default: null;
                  type: PropType<StyleValue>;
              };
              subtitle: {
                  default: undefined;
                  type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
              };
              tag: {
                  default: string;
                  type: PropType<string | JSXComponent>;
              };
              text: {
                  default: undefined;
                  type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
              };
              theme: StringConstructor;
              tile: BooleanConstructor;
              title: {
                  default: undefined;
                  type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
              };
              to: PropType<ObjectRenderer>;
              variant: Omit<{
                  default: string;
                  type: PropType<Variant>;
                  validator: ((v) => boolean);
              }, "type" | "default"> & {
                  default: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
                  type: PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
              };
              width: (StringConstructor | NumberConstructor)[];
          }>>
        • VCardText: {
              __isFragment?: never;
              __isSuspense?: never;
              __isTeleport?: never;
              new (...args): CreateComponentPublicInstanceWithMixins<{
                  style: StyleValue;
                  tag: string | JSXComponent;
              } & {
                  class?: any;
                  opacity?: string | number;
              } & {
                  $children?: VNodeChild | {
                      default?: ...;
                  } | (() => VNodeChild);
                  v-slots?: {
                      default?: false | (...);
                  };
              } & {
                  v-slot:default?: false | (() => VNodeChild);
              }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, VNodeProps & AllowedComponentProps & ComponentCustomProps, {
                  style: StyleValue;
                  tag: string | JSXComponent;
              }, true, {}, SlotsType<Partial<{
                  default: (() => VNode[]);
              }>>, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
                  B: {};
                  C: {};
                  D: {};
                  Defaults: {};
                  M: {};
                  P: {};
              }, {
                  style: StyleValue;
                  tag: string | JSXComponent;
              } & {
                  class?: any;
                  opacity?: string | number;
              } & {
                  $children?: VNodeChild | {
                      default?: ...;
                  } | (() => VNodeChild);
                  v-slots?: {
                      default?: false | (...);
                  };
              } & {
                  v-slot:default?: false | (() => VNodeChild);
              }, {}, {}, {}, {}, {
                  style: StyleValue;
                  tag: string | JSXComponent;
              }>;
          } & ComponentOptionsBase<{
              style: StyleValue;
              tag: string | JSXComponent;
          } & {
              class?: any;
              opacity?: string | number;
          } & {
              $children?: VNodeChild | {
                  default?: (() => ...);
              } | (() => VNodeChild);
              v-slots?: {
                  default?: false | (() => ...);
              };
          } & {
              v-slot:default?: false | (() => VNodeChild);
          }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, {
              style: StyleValue;
              tag: string | JSXComponent;
          }, {}, string, SlotsType<Partial<{
              default: (() => VNode[]);
          }>>, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & FilterPropsOptions<{
              class: PropType<ClassValue>;
              opacity: (StringConstructor | NumberConstructor)[];
              style: {
                  default: null;
                  type: PropType<StyleValue>;
              };
              tag: {
                  default: string;
                  type: PropType<string | JSXComponent>;
              };
          }, ExtractPropTypes<{
              class: PropType<ClassValue>;
              opacity: (StringConstructor | NumberConstructor)[];
              style: {
                  default: null;
                  type: PropType<StyleValue>;
              };
              tag: {
                  default: string;
                  type: PropType<string | JSXComponent>;
              };
          }>>
        • VCardTitle: {
              __isFragment?: never;
              __isSuspense?: never;
              __isTeleport?: never;
              new (...args): CreateComponentPublicInstanceWithMixins<{
                  style: StyleValue;
                  tag: string;
              } & {
                  class?: any;
              } & {
                  $children?: VNodeChild | {
                      default?: ...;
                  } | (() => VNodeChild);
                  v-slots?: {
                      default?: false | (...);
                  };
              } & {
                  v-slot:default?: false | (() => VNodeChild);
              }, (() => VNode<RendererNode, RendererElement, {
                  [key: string]: any;
              }>), unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, VNodeProps & AllowedComponentProps & ComponentCustomProps, {
                  style: StyleValue;
                  tag: string;
              }, true, {}, SlotsType<Partial<{
                  default: (() => VNode[]);
              }>>, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
                  B: {};
                  C: {};
                  D: {};
                  Defaults: {};
                  M: {};
                  P: {};
              }, {
                  style: StyleValue;
                  tag: string;
              } & {
                  class?: any;
              } & {
                  $children?: VNodeChild | {
                      default?: ...;
                  } | (() => VNodeChild);
                  v-slots?: {
                      default?: false | (...);
                  };
              } & {
                  v-slot:default?: false | (() => VNodeChild);
              }, (() => VNode<RendererNode, RendererElement, {
                  [key: string]: any;
              }>), {}, {}, {}, {
                  style: StyleValue;
                  tag: string;
              }>;
          } & ComponentOptionsBase<{
              style: StyleValue;
              tag: string;
          } & {
              class?: any;
          } & {
              $children?: VNodeChild | {
                  default?: (() => ...);
              } | (() => VNodeChild);
              v-slots?: {
                  default?: false | (() => ...);
              };
          } & {
              v-slot:default?: false | (() => VNodeChild);
          }, (() => VNode<RendererNode, RendererElement, {
              [key: string]: any;
          }>), unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, {
              style: StyleValue;
              tag: string;
          }, {}, string, SlotsType<Partial<{
              default: (() => VNode[]);
          }>>, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & FilterPropsOptions<{
              class: PropType<ClassValue>;
              style: {
                  default: null;
                  type: PropType<StyleValue>;
              };
              tag: {
                  default: string;
                  type: StringConstructor;
              };
          }, ExtractPropTypes<{
              class: PropType<ClassValue>;
              style: {
                  default: null;
                  type: PropType<StyleValue>;
              };
              tag: {
                  default: string;
                  type: StringConstructor;
              };
          }>>
        • VContainer: {
              __isFragment?: never;
              __isSuspense?: never;
              __isTeleport?: never;
              new (...args): CreateComponentPublicInstanceWithMixins<{
                  fluid: boolean;
                  style: StyleValue;
                  tag: string | JSXComponent;
              } & {
                  class?: any;
                  height?: string | number;
                  maxHeight?: string | number;
                  maxWidth?: string | number;
                  minHeight?: string | number;
                  minWidth?: string | number;
                  width?: string | number;
              } & {
                  $children?: VNodeChild | {
                      default?: ...;
                  } | (() => VNodeChild);
                  v-slots?: {
                      default?: false | (...);
                  };
              } & {
                  v-slot:default?: false | (() => VNodeChild);
              }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, VNodeProps & AllowedComponentProps & ComponentCustomProps, {
                  fluid: boolean;
                  style: StyleValue;
                  tag: string | JSXComponent;
              }, true, {}, SlotsType<Partial<{
                  default: (() => VNode[]);
              }>>, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
                  B: {};
                  C: {};
                  D: {};
                  Defaults: {};
                  M: {};
                  P: {};
              }, {
                  fluid: boolean;
                  style: StyleValue;
                  tag: string | JSXComponent;
              } & {
                  class?: any;
                  height?: string | number;
                  maxHeight?: string | number;
                  maxWidth?: string | number;
                  minHeight?: string | number;
                  minWidth?: string | number;
                  width?: string | number;
              } & {
                  $children?: VNodeChild | {
                      default?: ...;
                  } | (() => VNodeChild);
                  v-slots?: {
                      default?: false | (...);
                  };
              } & {
                  v-slot:default?: false | (() => VNodeChild);
              }, {}, {}, {}, {}, {
                  fluid: boolean;
                  style: StyleValue;
                  tag: string | JSXComponent;
              }>;
          } & ComponentOptionsBase<{
              fluid: boolean;
              style: StyleValue;
              tag: string | JSXComponent;
          } & {
              class?: any;
              height?: string | number;
              maxHeight?: string | number;
              maxWidth?: string | number;
              minHeight?: string | number;
              minWidth?: string | number;
              width?: string | number;
          } & {
              $children?: VNodeChild | {
                  default?: (() => ...);
              } | (() => VNodeChild);
              v-slots?: {
                  default?: false | (() => ...);
              };
          } & {
              v-slot:default?: false | (() => VNodeChild);
          }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, {
              fluid: boolean;
              style: StyleValue;
              tag: string | JSXComponent;
          }, {}, string, SlotsType<Partial<{
              default: (() => VNode[]);
          }>>, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & FilterPropsOptions<{
              class: PropType<ClassValue>;
              fluid: {
                  default: boolean;
                  type: BooleanConstructor;
              };
              height: (StringConstructor | NumberConstructor)[];
              maxHeight: (StringConstructor | NumberConstructor)[];
              maxWidth: (StringConstructor | NumberConstructor)[];
              minHeight: (StringConstructor | NumberConstructor)[];
              minWidth: (StringConstructor | NumberConstructor)[];
              style: {
                  default: null;
                  type: PropType<StyleValue>;
              };
              tag: {
                  default: string;
                  type: PropType<string | JSXComponent>;
              };
              width: (StringConstructor | NumberConstructor)[];
          }, ExtractPropTypes<{
              class: PropType<ClassValue>;
              fluid: {
                  default: boolean;
                  type: BooleanConstructor;
              };
              height: (StringConstructor | NumberConstructor)[];
              maxHeight: (StringConstructor | NumberConstructor)[];
              maxWidth: (StringConstructor | NumberConstructor)[];
              minHeight: (StringConstructor | NumberConstructor)[];
              minWidth: (StringConstructor | NumberConstructor)[];
              style: {
                  default: null;
                  type: PropType<StyleValue>;
              };
              tag: {
                  default: string;
                  type: PropType<string | JSXComponent>;
              };
              width: (StringConstructor | NumberConstructor)[];
          }>>
        • VIcon: {
              __isFragment?: never;
              __isSuspense?: never;
              __isTeleport?: never;
              new (...args): CreateComponentPublicInstanceWithMixins<{
                  disabled: boolean;
                  end: boolean;
                  size: string | number;
                  start: boolean;
                  style: StyleValue;
                  tag: string | JSXComponent;
              } & {
                  class?: any;
                  color?: string;
                  icon?: IconValue;
                  opacity?: string | number;
                  theme?: string;
              } & {
                  $children?: VNodeChild | {
                      default?: ...;
                  } | (() => VNodeChild);
                  v-slots?: {
                      default?: false | (...);
                  };
              } & {
                  v-slot:default?: false | (() => VNodeChild);
              }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, VNodeProps & AllowedComponentProps & ComponentCustomProps, {
                  disabled: boolean;
                  end: boolean;
                  size: string | number;
                  start: boolean;
                  style: StyleValue;
                  tag: string | JSXComponent;
              }, true, {}, SlotsType<Partial<{
                  default: (() => VNode[]);
              }>>, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
                  B: {};
                  C: {};
                  D: {};
                  Defaults: {};
                  M: {};
                  P: {};
              }, {
                  disabled: boolean;
                  end: boolean;
                  size: string | number;
                  start: boolean;
                  style: StyleValue;
                  tag: string | JSXComponent;
              } & {
                  class?: any;
                  color?: string;
                  icon?: IconValue;
                  opacity?: string | number;
                  theme?: string;
              } & {
                  $children?: VNodeChild | {
                      default?: ...;
                  } | (() => VNodeChild);
                  v-slots?: {
                      default?: false | (...);
                  };
              } & {
                  v-slot:default?: false | (() => VNodeChild);
              }, {}, {}, {}, {}, {
                  disabled: boolean;
                  end: boolean;
                  size: string | number;
                  start: boolean;
                  style: StyleValue;
                  tag: string | JSXComponent;
              }>;
          } & ComponentOptionsBase<{
              disabled: boolean;
              end: boolean;
              size: string | number;
              start: boolean;
              style: StyleValue;
              tag: string | JSXComponent;
          } & {
              class?: any;
              color?: string;
              icon?: IconValue;
              opacity?: string | number;
              theme?: string;
          } & {
              $children?: VNodeChild | {
                  default?: (() => ...);
              } | (() => VNodeChild);
              v-slots?: {
                  default?: false | (() => ...);
              };
          } & {
              v-slot:default?: false | (() => VNodeChild);
          }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, {
              disabled: boolean;
              end: boolean;
              size: string | number;
              start: boolean;
              style: StyleValue;
              tag: string | JSXComponent;
          }, {}, string, SlotsType<Partial<{
              default: (() => VNode[]);
          }>>, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & FilterPropsOptions<{
              class: PropType<ClassValue>;
              color: StringConstructor;
              disabled: BooleanConstructor;
              end: BooleanConstructor;
              icon: PropType<IconValue>;
              opacity: (StringConstructor | NumberConstructor)[];
              size: {
                  default: string;
                  type: (StringConstructor | NumberConstructor)[];
              };
              start: BooleanConstructor;
              style: {
                  default: null;
                  type: PropType<StyleValue>;
              };
              tag: Omit<{
                  default: string;
                  type: PropType<string | JSXComponent>;
              }, "type" | "default"> & {
                  default: NonNullable<string | JSXComponent>;
                  type: PropType<string | JSXComponent>;
              };
              theme: StringConstructor;
          }, ExtractPropTypes<{
              class: PropType<ClassValue>;
              color: StringConstructor;
              disabled: BooleanConstructor;
              end: BooleanConstructor;
              icon: PropType<IconValue>;
              opacity: (StringConstructor | NumberConstructor)[];
              size: {
                  default: string;
                  type: (StringConstructor | NumberConstructor)[];
              };
              start: BooleanConstructor;
              style: {
                  default: null;
                  type: PropType<StyleValue>;
              };
              tag: Omit<{
                  default: string;
                  type: PropType<(...) | (...)>;
              }, "type" | "default"> & {
                  default: NonNullable<string | JSXComponent>;
                  type: PropType<string | JSXComponent>;
              };
              theme: StringConstructor;
          }>>
        • VRow: {
              __isFragment?: never;
              __isSuspense?: never;
              __isTeleport?: never;
              new (...args): CreateComponentPublicInstanceWithMixins<{
                  align: "center" | "end" | "start" | "stretch" | "baseline";
                  alignContent: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
                  dense: boolean;
                  justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
                  noGutters: boolean;
                  style: StyleValue;
                  tag: string | JSXComponent;
              } & {
                  alignContentLg?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
                  alignContentMd?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
                  alignContentSm?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
                  alignContentXl?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
                  alignContentXxl?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
                  alignLg?: "center" | "end" | "start" | "stretch" | "baseline";
                  alignMd?: "center" | "end" | "start" | "stretch" | "baseline";
                  alignSm?: "center" | "end" | "start" | "stretch" | "baseline";
                  alignXl?: "center" | "end" | "start" | "stretch" | "baseline";
                  alignXxl?: "center" | "end" | "start" | "stretch" | "baseline";
                  class?: any;
                  justifyLg?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
                  justifyMd?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
                  justifySm?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
                  justifyXl?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
                  justifyXxl?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
              } & {
                  $children?: VNodeChild | {
                      default?: ...;
                  } | (() => VNodeChild);
                  v-slots?: {
                      default?: false | (...);
                  };
              } & {
                  v-slot:default?: false | (() => VNodeChild);
              }, (() => VNode<RendererNode, RendererElement, {
                  [key: string]: any;
              }>), unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, VNodeProps & AllowedComponentProps & ComponentCustomProps, {
                  align: "center" | "end" | "start" | "stretch" | "baseline";
                  alignContent: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
                  dense: boolean;
                  justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
                  noGutters: boolean;
                  style: StyleValue;
                  tag: string | JSXComponent;
              }, true, {}, SlotsType<Partial<{
                  default: (() => VNode[]);
              }>>, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
                  B: {};
                  C: {};
                  D: {};
                  Defaults: {};
                  M: {};
                  P: {};
              }, {
                  align: "center" | "end" | "start" | "stretch" | "baseline";
                  alignContent: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
                  dense: boolean;
                  justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
                  noGutters: boolean;
                  style: StyleValue;
                  tag: string | JSXComponent;
              } & {
                  alignContentLg?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
                  alignContentMd?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
                  alignContentSm?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
                  alignContentXl?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
                  alignContentXxl?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
                  alignLg?: "center" | "end" | "start" | "stretch" | "baseline";
                  alignMd?: "center" | "end" | "start" | "stretch" | "baseline";
                  alignSm?: "center" | "end" | "start" | "stretch" | "baseline";
                  alignXl?: "center" | "end" | "start" | "stretch" | "baseline";
                  alignXxl?: "center" | "end" | "start" | "stretch" | "baseline";
                  class?: any;
                  justifyLg?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
                  justifyMd?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
                  justifySm?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
                  justifyXl?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
                  justifyXxl?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
              } & {
                  $children?: VNodeChild | {
                      default?: ...;
                  } | (() => VNodeChild);
                  v-slots?: {
                      default?: false | (...);
                  };
              } & {
                  v-slot:default?: false | (() => VNodeChild);
              }, (() => VNode<RendererNode, RendererElement, {
                  [key: string]: any;
              }>), {}, {}, {}, {
                  align: "center" | "end" | "start" | "stretch" | "baseline";
                  alignContent: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
                  dense: boolean;
                  justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
                  noGutters: boolean;
                  style: StyleValue;
                  tag: string | JSXComponent;
              }>;
          } & ComponentOptionsBase<{
              align: "center" | "end" | "start" | "stretch" | "baseline";
              alignContent: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
              dense: boolean;
              justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
              noGutters: boolean;
              style: StyleValue;
              tag: string | JSXComponent;
          } & {
              alignContentLg?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
              alignContentMd?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
              alignContentSm?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
              alignContentXl?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
              alignContentXxl?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
              alignLg?: "center" | "end" | "start" | "stretch" | "baseline";
              alignMd?: "center" | "end" | "start" | "stretch" | "baseline";
              alignSm?: "center" | "end" | "start" | "stretch" | "baseline";
              alignXl?: "center" | "end" | "start" | "stretch" | "baseline";
              alignXxl?: "center" | "end" | "start" | "stretch" | "baseline";
              class?: any;
              justifyLg?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
              justifyMd?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
              justifySm?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
              justifyXl?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
              justifyXxl?: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly";
          } & {
              $children?: VNodeChild | {
                  default?: (() => ...);
              } | (() => VNodeChild);
              v-slots?: {
                  default?: false | (() => ...);
              };
          } & {
              v-slot:default?: false | (() => VNodeChild);
          }, (() => VNode<RendererNode, RendererElement, {
              [key: string]: any;
          }>), unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, {
              align: "center" | "end" | "start" | "stretch" | "baseline";
              alignContent: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
              dense: boolean;
              justify: "center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch";
              noGutters: boolean;
              style: StyleValue;
              tag: string | JSXComponent;
          }, {}, string, SlotsType<Partial<{
              default: (() => VNode[]);
          }>>, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & FilterPropsOptions<{
              align: {
                  default: null;
                  type: PropType<ALIGN_VALUES[number]>;
                  validator: ((str) => boolean);
              };
              alignContent: {
                  default: null;
                  type: PropType<ALIGN_CONTENT_VALUES[number]>;
                  validator: ((str) => boolean);
              };
              alignContentLg: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch", null>;
              alignContentMd: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch", null>;
              alignContentSm: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch", null>;
              alignContentXl: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch", null>;
              alignContentXxl: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch", null>;
              alignLg: Prop<"center" | "end" | "start" | "stretch" | "baseline", null>;
              alignMd: Prop<"center" | "end" | "start" | "stretch" | "baseline", null>;
              alignSm: Prop<"center" | "end" | "start" | "stretch" | "baseline", null>;
              alignXl: Prop<"center" | "end" | "start" | "stretch" | "baseline", null>;
              alignXxl: Prop<"center" | "end" | "start" | "stretch" | "baseline", null>;
              class: PropType<ClassValue>;
              dense: BooleanConstructor;
              justify: {
                  default: null;
                  type: PropType<ALIGN_CONTENT_VALUES[number]>;
                  validator: ((str) => boolean);
              };
              justifyLg: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly", null>;
              justifyMd: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly", null>;
              justifySm: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly", null>;
              justifyXl: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly", null>;
              justifyXxl: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly", null>;
              noGutters: BooleanConstructor;
              style: {
                  default: null;
                  type: PropType<StyleValue>;
              };
              tag: {
                  default: string;
                  type: PropType<string | JSXComponent>;
              };
          }, ExtractPropTypes<{
              align: {
                  default: null;
                  type: PropType<ALIGN_VALUES[number]>;
                  validator: ((str) => boolean);
              };
              alignContent: {
                  default: null;
                  type: PropType<ALIGN_CONTENT_VALUES[number]>;
                  validator: ((str) => boolean);
              };
              alignContentLg: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch", null>;
              alignContentMd: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch", null>;
              alignContentSm: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch", null>;
              alignContentXl: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch", null>;
              alignContentXxl: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly" | "stretch", null>;
              alignLg: Prop<"center" | "end" | "start" | "stretch" | "baseline", null>;
              alignMd: Prop<"center" | "end" | "start" | "stretch" | "baseline", null>;
              alignSm: Prop<"center" | "end" | "start" | "stretch" | "baseline", null>;
              alignXl: Prop<"center" | "end" | "start" | "stretch" | "baseline", null>;
              alignXxl: Prop<"center" | "end" | "start" | "stretch" | "baseline", null>;
              class: PropType<ClassValue>;
              dense: BooleanConstructor;
              justify: {
                  default: null;
                  type: PropType<ALIGN_CONTENT_VALUES[number]>;
                  validator: ((str) => boolean);
              };
              justifyLg: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly", null>;
              justifyMd: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly", null>;
              justifySm: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly", null>;
              justifyXl: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly", null>;
              justifyXxl: Prop<"center" | "end" | "start" | "space-around" | "space-between" | "space-evenly", null>;
              noGutters: BooleanConstructor;
              style: {
                  default: null;
                  type: PropType<StyleValue>;
              };
              tag: {
                  default: string;
                  type: PropType<string | JSXComponent>;
              };
          }>>
        • VSpacer: {
              __isFragment?: never;
              __isSuspense?: never;
              __isTeleport?: never;
              new (...args): CreateComponentPublicInstanceWithMixins<{
                  style: StyleValue;
                  tag: string;
              } & {
                  class?: any;
              } & {
                  $children?: VNodeChild | {
                      default?: ...;
                  } | (() => VNodeChild);
                  v-slots?: {
                      default?: false | (...);
                  };
              } & {
                  v-slot:default?: false | (() => VNodeChild);
              }, (() => VNode<RendererNode, RendererElement, {
                  [key: string]: any;
              }>), unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, VNodeProps & AllowedComponentProps & ComponentCustomProps, {
                  style: StyleValue;
                  tag: string;
              }, true, {}, SlotsType<Partial<{
                  default: (() => VNode[]);
              }>>, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
                  B: {};
                  C: {};
                  D: {};
                  Defaults: {};
                  M: {};
                  P: {};
              }, {
                  style: StyleValue;
                  tag: string;
              } & {
                  class?: any;
              } & {
                  $children?: VNodeChild | {
                      default?: ...;
                  } | (() => VNodeChild);
                  v-slots?: {
                      default?: false | (...);
                  };
              } & {
                  v-slot:default?: false | (() => VNodeChild);
              }, (() => VNode<RendererNode, RendererElement, {
                  [key: string]: any;
              }>), {}, {}, {}, {
                  style: StyleValue;
                  tag: string;
              }>;
          } & ComponentOptionsBase<{
              style: StyleValue;
              tag: string;
          } & {
              class?: any;
          } & {
              $children?: VNodeChild | {
                  default?: (() => ...);
              } | (() => VNodeChild);
              v-slots?: {
                  default?: false | (() => ...);
              };
          } & {
              v-slot:default?: false | (() => VNodeChild);
          }, (() => VNode<RendererNode, RendererElement, {
              [key: string]: any;
          }>), unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, {
              style: StyleValue;
              tag: string;
          }, {}, string, SlotsType<Partial<{
              default: (() => VNode[]);
          }>>, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & FilterPropsOptions<{
              class: PropType<ClassValue>;
              style: {
                  default: null;
                  type: PropType<StyleValue>;
              };
              tag: {
                  default: string;
                  type: StringConstructor;
              };
          }, ExtractPropTypes<{
              class: PropType<ClassValue>;
              style: {
                  default: null;
                  type: PropType<StyleValue>;
              };
              tag: {
                  default: string;
                  type: StringConstructor;
              };
          }>>
        • VTable: {
              __isFragment?: never;
              __isSuspense?: never;
              __isTeleport?: never;
              new (...args): CreateComponentPublicInstanceWithMixins<{
                  density: Density;
                  fixedFooter: boolean;
                  fixedHeader: boolean;
                  hover: boolean;
                  striped: Striped;
                  style: StyleValue;
                  tag: string | JSXComponent;
              } & {
                  class?: any;
                  height?: string | number;
                  theme?: string;
              } & {
                  $children?: VNodeChild | (() => VNodeChild) | {
                      bottom?: ...;
                      default?: ...;
                      top?: ...;
                      wrapper?: ...;
                  };
                  v-slots?: {
                      bottom?: false | (...);
                      default?: false | (...);
                      top?: false | (...);
                      wrapper?: false | (...);
                  };
              } & {
                  v-slot:bottom?: false | (() => VNodeChild);
                  v-slot:default?: false | (() => VNodeChild);
                  v-slot:top?: false | (() => VNodeChild);
                  v-slot:wrapper?: false | (() => VNodeChild);
              }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, VNodeProps & AllowedComponentProps & ComponentCustomProps, {
                  density: Density;
                  fixedFooter: boolean;
                  fixedHeader: boolean;
                  hover: boolean;
                  striped: Striped;
                  style: StyleValue;
                  tag: string | JSXComponent;
              }, true, {}, SlotsType<Partial<{
                  bottom: (() => VNode[]);
                  default: (() => VNode[]);
                  top: (() => VNode[]);
                  wrapper: (() => VNode[]);
              }>>, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
                  B: {};
                  C: {};
                  D: {};
                  Defaults: {};
                  M: {};
                  P: {};
              }, {
                  density: Density;
                  fixedFooter: boolean;
                  fixedHeader: boolean;
                  hover: boolean;
                  striped: Striped;
                  style: StyleValue;
                  tag: string | JSXComponent;
              } & {
                  class?: any;
                  height?: string | number;
                  theme?: string;
              } & {
                  $children?: VNodeChild | (() => VNodeChild) | {
                      bottom?: ...;
                      default?: ...;
                      top?: ...;
                      wrapper?: ...;
                  };
                  v-slots?: {
                      bottom?: false | (...);
                      default?: false | (...);
                      top?: false | (...);
                      wrapper?: false | (...);
                  };
              } & {
                  v-slot:bottom?: false | (() => VNodeChild);
                  v-slot:default?: false | (() => VNodeChild);
                  v-slot:top?: false | (() => VNodeChild);
                  v-slot:wrapper?: false | (() => VNodeChild);
              }, {}, {}, {}, {}, {
                  density: Density;
                  fixedFooter: boolean;
                  fixedHeader: boolean;
                  hover: boolean;
                  striped: Striped;
                  style: StyleValue;
                  tag: string | JSXComponent;
              }>;
          } & ComponentOptionsBase<{
              density: Density;
              fixedFooter: boolean;
              fixedHeader: boolean;
              hover: boolean;
              striped: Striped;
              style: StyleValue;
              tag: string | JSXComponent;
          } & {
              class?: any;
              height?: string | number;
              theme?: string;
          } & {
              $children?: VNodeChild | (() => VNodeChild) | {
                  bottom?: (() => ...);
                  default?: (() => ...);
                  top?: (() => ...);
                  wrapper?: (() => ...);
              };
              v-slots?: {
                  bottom?: false | (() => ...);
                  default?: false | (() => ...);
                  top?: false | (() => ...);
                  wrapper?: false | (() => ...);
              };
          } & {
              v-slot:bottom?: false | (() => VNodeChild);
              v-slot:default?: false | (() => VNodeChild);
              v-slot:top?: false | (() => VNodeChild);
              v-slot:wrapper?: false | (() => VNodeChild);
          }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, {
              density: Density;
              fixedFooter: boolean;
              fixedHeader: boolean;
              hover: boolean;
              striped: Striped;
              style: StyleValue;
              tag: string | JSXComponent;
          }, {}, string, SlotsType<Partial<{
              bottom: (() => VNode[]);
              default: (() => VNode[]);
              top: (() => VNode[]);
              wrapper: (() => VNode[]);
          }>>, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & FilterPropsOptions<{
              class: PropType<ClassValue>;
              density: {
                  default: string;
                  type: PropType<Density>;
                  validator: ((v) => boolean);
              };
              fixedFooter: BooleanConstructor;
              fixedHeader: BooleanConstructor;
              height: (StringConstructor | NumberConstructor)[];
              hover: BooleanConstructor;
              striped: {
                  default: null;
                  type: PropType<Striped>;
                  validator: ((v) => boolean);
              };
              style: {
                  default: null;
                  type: PropType<StyleValue>;
              };
              tag: {
                  default: string;
                  type: PropType<string | JSXComponent>;
              };
              theme: StringConstructor;
          }, ExtractPropTypes<{
              class: PropType<ClassValue>;
              density: {
                  default: string;
                  type: PropType<Density>;
                  validator: ((v) => boolean);
              };
              fixedFooter: BooleanConstructor;
              fixedHeader: BooleanConstructor;
              height: (StringConstructor | NumberConstructor)[];
              hover: BooleanConstructor;
              striped: {
                  default: null;
                  type: PropType<Striped>;
                  validator: ((v) => boolean);
              };
              style: {
                  default: null;
                  type: PropType<StyleValue>;
              };
              tag: {
                  default: string;
                  type: PropType<string | JSXComponent>;
              };
              theme: StringConstructor;
          }>>
        • VToolbar: {
              __isFragment?: never;
              __isSuspense?: never;
              __isTeleport?: never;
              new (...args): CreateComponentPublicInstanceWithMixins<{
                  absolute: boolean;
                  collapse: boolean;
                  density: Density;
                  extended: boolean;
                  extensionHeight: string | number;
                  flat: boolean;
                  floating: boolean;
                  height: string | number;
                  style: StyleValue;
                  tag: string | JSXComponent;
                  tile: boolean;
              } & {
                  border?: string | number | boolean;
                  class?: any;
                  color?: string;
                  elevation?: string | number;
                  image?: string;
                  rounded?: string | number | boolean;
                  theme?: string;
                  title?: string;
              } & {
                  $children?: VNodeChild | (() => VNodeChild) | {
                      append?: ...;
                      default?: ...;
                      extension?: ...;
                      image?: ...;
                      prepend?: ...;
                      title?: ...;
                  };
                  v-slots?: {
                      append?: false | (...);
                      default?: false | (...);
                      extension?: false | (...);
                      image?: false | (...);
                      prepend?: false | (...);
                      title?: false | (...);
                  };
              } & {
                  v-slot:append?: false | (() => VNodeChild);
                  v-slot:default?: false | (() => VNodeChild);
                  v-slot:extension?: false | (() => VNodeChild);
                  v-slot:image?: false | (() => VNodeChild);
                  v-slot:prepend?: false | (() => VNodeChild);
                  v-slot:title?: false | (() => VNodeChild);
              }, {
                  contentHeight: ComputedRef<number>;
                  extensionHeight: ComputedRef<number>;
              }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, VNodeProps & AllowedComponentProps & ComponentCustomProps, {
                  absolute: boolean;
                  collapse: boolean;
                  density: Density;
                  extended: boolean;
                  extensionHeight: string | number;
                  flat: boolean;
                  floating: boolean;
                  height: string | number;
                  rounded: string | number | boolean;
                  style: StyleValue;
                  tag: string | JSXComponent;
                  tile: boolean;
              }, true, {}, SlotsType<Partial<{
                  append: (() => VNode[]);
                  default: (() => VNode[]);
                  extension: (() => VNode[]);
                  image: (() => VNode[]);
                  prepend: (() => VNode[]);
                  title: (() => VNode[]);
              }>>, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
                  B: {};
                  C: {};
                  D: {};
                  Defaults: {};
                  M: {};
                  P: {};
              }, {
                  absolute: boolean;
                  collapse: boolean;
                  density: Density;
                  extended: boolean;
                  extensionHeight: string | number;
                  flat: boolean;
                  floating: boolean;
                  height: string | number;
                  style: StyleValue;
                  tag: string | JSXComponent;
                  tile: boolean;
              } & {
                  border?: string | number | boolean;
                  class?: any;
                  color?: string;
                  elevation?: string | number;
                  image?: string;
                  rounded?: string | number | boolean;
                  theme?: string;
                  title?: string;
              } & {
                  $children?: VNodeChild | (() => VNodeChild) | {
                      append?: ...;
                      default?: ...;
                      extension?: ...;
                      image?: ...;
                      prepend?: ...;
                      title?: ...;
                  };
                  v-slots?: {
                      append?: false | (...);
                      default?: false | (...);
                      extension?: false | (...);
                      image?: false | (...);
                      prepend?: false | (...);
                      title?: false | (...);
                  };
              } & {
                  v-slot:append?: false | (() => VNodeChild);
                  v-slot:default?: false | (() => VNodeChild);
                  v-slot:extension?: false | (() => VNodeChild);
                  v-slot:image?: false | (() => VNodeChild);
                  v-slot:prepend?: false | (() => VNodeChild);
                  v-slot:title?: false | (() => VNodeChild);
              }, {
                  contentHeight: ComputedRef<number>;
                  extensionHeight: ComputedRef<number>;
              }, {}, {}, {}, {
                  absolute: boolean;
                  collapse: boolean;
                  density: Density;
                  extended: boolean;
                  extensionHeight: string | number;
                  flat: boolean;
                  floating: boolean;
                  height: string | number;
                  rounded: string | number | boolean;
                  style: StyleValue;
                  tag: string | JSXComponent;
                  tile: boolean;
              }>;
          } & ComponentOptionsBase<{
              absolute: boolean;
              collapse: boolean;
              density: Density;
              extended: boolean;
              extensionHeight: string | number;
              flat: boolean;
              floating: boolean;
              height: string | number;
              style: StyleValue;
              tag: string | JSXComponent;
              tile: boolean;
          } & {
              border?: string | number | boolean;
              class?: any;
              color?: string;
              elevation?: string | number;
              image?: string;
              rounded?: string | number | boolean;
              theme?: string;
              title?: string;
          } & {
              $children?: VNodeChild | (() => VNodeChild) | {
                  append?: (() => ...);
                  default?: (() => ...);
                  extension?: (() => ...);
                  image?: (() => ...);
                  prepend?: (() => ...);
                  title?: (() => ...);
              };
              v-slots?: {
                  append?: false | (() => ...);
                  default?: false | (() => ...);
                  extension?: false | (() => ...);
                  image?: false | (() => ...);
                  prepend?: false | (() => ...);
                  title?: false | (() => ...);
              };
          } & {
              v-slot:append?: false | (() => VNodeChild);
              v-slot:default?: false | (() => VNodeChild);
              v-slot:extension?: false | (() => VNodeChild);
              v-slot:image?: false | (() => VNodeChild);
              v-slot:prepend?: false | (() => VNodeChild);
              v-slot:title?: false | (() => VNodeChild);
          }, {
              contentHeight: ComputedRef<number>;
              extensionHeight: ComputedRef<number>;
          }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, {
              absolute: boolean;
              collapse: boolean;
              density: Density;
              extended: boolean;
              extensionHeight: string | number;
              flat: boolean;
              floating: boolean;
              height: string | number;
              rounded: string | number | boolean;
              style: StyleValue;
              tag: string | JSXComponent;
              tile: boolean;
          }, {}, string, SlotsType<Partial<{
              append: (() => VNode[]);
              default: (() => VNode[]);
              extension: (() => VNode[]);
              image: (() => VNode[]);
              prepend: (() => VNode[]);
              title: (() => VNode[]);
          }>>, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & FilterPropsOptions<{
              absolute: BooleanConstructor;
              border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
              class: PropType<ClassValue>;
              collapse: BooleanConstructor;
              color: StringConstructor;
              density: {
                  default: string;
                  type: PropType<Density>;
                  validator: ((v) => boolean);
              };
              elevation: {
                  type: (StringConstructor | NumberConstructor)[];
                  validator(v): boolean;
              };
              extended: {
                  default: null;
                  type: BooleanConstructor;
              };
              extensionHeight: {
                  default: number;
                  type: (StringConstructor | NumberConstructor)[];
              };
              flat: BooleanConstructor;
              floating: BooleanConstructor;
              height: {
                  default: number;
                  type: (StringConstructor | NumberConstructor)[];
              };
              image: StringConstructor;
              rounded: {
                  default: undefined;
                  type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
              };
              style: {
                  default: null;
                  type: PropType<StyleValue>;
              };
              tag: Omit<{
                  default: string;
                  type: PropType<string | JSXComponent>;
              }, "type" | "default"> & {
                  default: NonNullable<string | JSXComponent>;
                  type: PropType<string | JSXComponent>;
              };
              theme: StringConstructor;
              tile: BooleanConstructor;
              title: StringConstructor;
          }, ExtractPropTypes<{
              absolute: BooleanConstructor;
              border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
              class: PropType<ClassValue>;
              collapse: BooleanConstructor;
              color: StringConstructor;
              density: {
                  default: string;
                  type: PropType<Density>;
                  validator: ((v) => boolean);
              };
              elevation: {
                  type: (StringConstructor | NumberConstructor)[];
                  validator(v): boolean;
              };
              extended: {
                  default: null;
                  type: BooleanConstructor;
              };
              extensionHeight: {
                  default: number;
                  type: (StringConstructor | NumberConstructor)[];
              };
              flat: BooleanConstructor;
              floating: BooleanConstructor;
              height: {
                  default: number;
                  type: (StringConstructor | NumberConstructor)[];
              };
              image: StringConstructor;
              rounded: {
                  default: undefined;
                  type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
              };
              style: {
                  default: null;
                  type: PropType<StyleValue>;
              };
              tag: Omit<{
                  default: string;
                  type: PropType<(...) | (...)>;
              }, "type" | "default"> & {
                  default: NonNullable<string | JSXComponent>;
                  type: PropType<string | JSXComponent>;
              };
              theme: StringConstructor;
              tile: BooleanConstructor;
              title: StringConstructor;
          }>>
        • VToolbarTitle: {
              __isFragment?: never;
              __isSuspense?: never;
              __isTeleport?: never;
              new (...args): CreateComponentPublicInstanceWithMixins<{
                  style: StyleValue;
                  tag: string | JSXComponent;
              } & {
                  class?: any;
                  text?: string;
              } & {
                  $children?: VNodeChild | (() => VNodeChild) | {
                      default?: ...;
                      text?: ...;
                  };
                  v-slots?: {
                      default?: false | (...);
                      text?: false | (...);
                  };
              } & {
                  v-slot:default?: false | (() => VNodeChild);
                  v-slot:text?: false | (() => VNodeChild);
              }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, VNodeProps & AllowedComponentProps & ComponentCustomProps, {
                  style: StyleValue;
                  tag: string | JSXComponent;
              }, true, {}, SlotsType<Partial<{
                  default: (() => VNode[]);
                  text: (() => VNode[]);
              }>>, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
                  B: {};
                  C: {};
                  D: {};
                  Defaults: {};
                  M: {};
                  P: {};
              }, {
                  style: StyleValue;
                  tag: string | JSXComponent;
              } & {
                  class?: any;
                  text?: string;
              } & {
                  $children?: VNodeChild | (() => VNodeChild) | {
                      default?: ...;
                      text?: ...;
                  };
                  v-slots?: {
                      default?: false | (...);
                      text?: false | (...);
                  };
              } & {
                  v-slot:default?: false | (() => VNodeChild);
                  v-slot:text?: false | (() => VNodeChild);
              }, {}, {}, {}, {}, {
                  style: StyleValue;
                  tag: string | JSXComponent;
              }>;
          } & ComponentOptionsBase<{
              style: StyleValue;
              tag: string | JSXComponent;
          } & {
              class?: any;
              text?: string;
          } & {
              $children?: VNodeChild | (() => VNodeChild) | {
                  default?: (() => ...);
                  text?: (() => ...);
              };
              v-slots?: {
                  default?: false | (() => ...);
                  text?: false | (() => ...);
              };
          } & {
              v-slot:default?: false | (() => VNodeChild);
              v-slot:text?: false | (() => VNodeChild);
          }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, {
              style: StyleValue;
              tag: string | JSXComponent;
          }, {}, string, SlotsType<Partial<{
              default: (() => VNode[]);
              text: (() => VNode[]);
          }>>, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & FilterPropsOptions<{
              class: PropType<ClassValue>;
              style: {
                  default: null;
                  type: PropType<StyleValue>;
              };
              tag: {
                  default: string;
                  type: PropType<string | JSXComponent>;
              };
              text: StringConstructor;
          }, ExtractPropTypes<{
              class: PropType<ClassValue>;
              style: {
                  default: null;
                  type: PropType<StyleValue>;
              };
              tag: {
                  default: string;
                  type: PropType<string | JSXComponent>;
              };
              text: StringConstructor;
          }>>
        • VTooltip: {
              __isFragment?: never;
              __isSuspense?: never;
              __isTeleport?: never;
              new (...args): CreateComponentPublicInstanceWithMixins<{
                  activatorProps: Record<string, any>;
                  closeOnBack: boolean;
                  closeOnContentClick: boolean;
                  contained: boolean;
                  disabled: boolean;
                  eager: boolean;
                  interactive: boolean;
                  location: Anchor;
                  locationStrategy: "connected" | "static" | LocationStrategyFunction;
                  minWidth: string | number;
                  modelValue: boolean;
                  noClickAnimation: boolean;
                  offset: string | number | number[] | undefined;
                  openOnClick: boolean;
                  openOnHover: boolean;
                  origin: "auto" | Anchor | "overlap";
                  scrim: string | boolean;
                  scrollStrategy: "none" | "block" | "close" | ScrollStrategyFunction | "reposition";
                  style: StyleValue;
                  transition: string | boolean | TransitionProps & {
                      component?: ...;
                  } | null;
                  zIndex: string | number;
              } & {
                  activator?: Element | "parent" | string & {} | ComponentPublicInstance;
                  attach?: string | boolean | Element;
                  class?: any;
                  closeDelay?: string | number;
                  contentClass?: any;
                  contentProps?: any;
                  height?: string | number;
                  id?: string;
                  maxHeight?: string | number;
                  maxWidth?: string | number;
                  minHeight?: string | number;
                  opacity?: string | number;
                  openDelay?: string | number;
                  openOnFocus?: boolean;
                  target?: Element | "cursor" | "parent" | string & {} | ComponentPublicInstance | [x: number, y: number];
                  text?: string;
                  theme?: string;
                  width?: string | number;
              } & {
                  $children?: VNodeChild | {
                      activator?: ...;
                      default?: ...;
                  } | ((arg) => VNodeChild);
                  v-slots?: {
                      activator?: false | (...);
                      default?: false | (...);
                  };
              } & {
                  v-slot:activator?: false | ((arg) => VNodeChild);
                  v-slot:default?: false | ((arg) => VNodeChild);
              } & {
                  onUpdate:modelValue?: ((value) => any);
              }, Omit<Omit<{
                  $: ComponentInternalInstance;
                  $attrs: {
                      [x: ...]: ...;
                  };
                  $data: {};
                  $el: any;
                  $emit: (...) & (...) & (...) & (...) & (...);
                  $forceUpdate: (() => ...);
                  $host: (...) | (...);
                  $nextTick: nextTick;
                  $options: (...) & (...);
                  $parent: (...) | (...);
                  $props: (...) & (...);
                  $refs: {
                      [x: ...]: ...;
                  };
                  $root: (...) | (...);
                  $slots: Readonly<(...)>;
                  $watch<T>(source, cb, options?): WatchStopHandle;
              } & Readonly<{
                  _disableGlobalStack: ...;
                  absolute: ...;
                  activatorProps: ...;
                  closeOnBack: ...;
                  closeOnContentClick: ...;
                  contained: ...;
                  disabled: ...;
                  eager: ...;
                  location: ...;
                  locationStrategy: ...;
                  modelValue: ...;
                  noClickAnimation: ...;
                  openOnClick: ...;
                  openOnFocus: ...;
                  openOnHover: ...;
                  origin: ...;
                  persistent: ...;
                  scrim: ...;
                  scrollStrategy: ...;
                  style: ...;
                  zIndex: ...;
              }> & Omit<(...) & (...) & (...) & (...) & (...), (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...)> & ShallowUnwrapRef<{
                  activatorEl: ...;
                  animateClick: ...;
                  contentEl: ...;
                  globalTop: ...;
                  localTop: ...;
                  scrimEl: ...;
                  target: ...;
                  updateLocation: ...;
              }> & ComponentCustomProperties, "style" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | "disabled" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "offset" | "absolute" | "target" | "location" | "origin" | "zIndex" | "eager" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack" | "opacity" | "transition" | "closeDelay" | "openDelay" | "activator" | "contentClass" | "contentProps" | "attach" | "v-slot:activator" | "onAfterEnter" | "onAfterLeave" | "onKeydown" | "onUpdate:modelValue" | "onClick:outside" | (keyof VNodeProps)>, `$${any}`> & {
                  _allExposed: {
                      activatorEl: Ref<(...) | (...), (...) | (...)>;
                      animateClick: (() => void);
                      contentEl: Ref<(...) | (...), (...) | (...)>;
                      globalTop: Readonly<Ref<(...), (...)>>;
                      localTop: Readonly<Ref<(...), (...)>>;
                      scrimEl: Ref<(...) | (...), (...) | (...)>;
                      target: ComputedRef<(...) | (...) | (...)>;
                      updateLocation: Ref<(...) | (...), (...) | (...)>;
                  } | {};
              }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
                  update:modelValue: ((value) => true);
              }, VNodeProps & AllowedComponentProps & ComponentCustomProps, {
                  activatorProps: Record<string, any>;
                  closeOnBack: boolean;
                  closeOnContentClick: boolean;
                  contained: boolean;
                  disabled: boolean;
                  eager: boolean;
                  interactive: boolean;
                  location: Anchor;
                  locationStrategy: "connected" | "static" | LocationStrategyFunction;
                  minWidth: string | number;
                  modelValue: boolean;
                  noClickAnimation: boolean;
                  offset: string | number | number[] | undefined;
                  openOnClick: boolean;
                  openOnFocus: boolean;
                  openOnHover: boolean;
                  origin: "auto" | Anchor | "overlap";
                  scrim: string | boolean;
                  scrollStrategy: "none" | "block" | "close" | ScrollStrategyFunction | "reposition";
                  style: StyleValue;
                  transition: string | boolean | TransitionProps & {
                      component?: Component;
                  } | null;
                  zIndex: string | number;
              }, true, {}, SlotsType<Partial<{
                  activator: ((arg) => VNode[]);
                  default: ((arg) => VNode[]);
              }>>, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
                  B: {};
                  C: {};
                  D: {};
                  Defaults: {};
                  M: {};
                  P: {};
              }, {
                  activatorProps: Record<string, any>;
                  closeOnBack: boolean;
                  closeOnContentClick: boolean;
                  contained: boolean;
                  disabled: boolean;
                  eager: boolean;
                  interactive: boolean;
                  location: Anchor;
                  locationStrategy: "connected" | "static" | LocationStrategyFunction;
                  minWidth: string | number;
                  modelValue: boolean;
                  noClickAnimation: boolean;
                  offset: string | number | number[] | undefined;
                  openOnClick: boolean;
                  openOnHover: boolean;
                  origin: "auto" | Anchor | "overlap";
                  scrim: string | boolean;
                  scrollStrategy: "none" | "block" | "close" | ScrollStrategyFunction | "reposition";
                  style: StyleValue;
                  transition: string | boolean | TransitionProps & {
                      component?: ...;
                  } | null;
                  zIndex: string | number;
              } & {
                  activator?: Element | "parent" | string & {} | ComponentPublicInstance;
                  attach?: string | boolean | Element;
                  class?: any;
                  closeDelay?: string | number;
                  contentClass?: any;
                  contentProps?: any;
                  height?: string | number;
                  id?: string;
                  maxHeight?: string | number;
                  maxWidth?: string | number;
                  minHeight?: string | number;
                  opacity?: string | number;
                  openDelay?: string | number;
                  openOnFocus?: boolean;
                  target?: Element | "cursor" | "parent" | string & {} | ComponentPublicInstance | [x: number, y: number];
                  text?: string;
                  theme?: string;
                  width?: string | number;
              } & {
                  $children?: VNodeChild | {
                      activator?: ...;
                      default?: ...;
                  } | ((arg) => VNodeChild);
                  v-slots?: {
                      activator?: false | (...);
                      default?: false | (...);
                  };
              } & {
                  v-slot:activator?: false | ((arg) => VNodeChild);
                  v-slot:default?: false | ((arg) => VNodeChild);
              } & {
                  onUpdate:modelValue?: ((value) => any);
              }, Omit<Omit<{
                  $: ComponentInternalInstance;
                  $attrs: {
                      [x: ...]: ...;
                  };
                  $data: {};
                  $el: any;
                  $emit: (...) & (...) & (...) & (...) & (...);
                  $forceUpdate: (() => ...);
                  $host: (...) | (...);
                  $nextTick: nextTick;
                  $options: (...) & (...);
                  $parent: (...) | (...);
                  $props: (...) & (...);
                  $refs: {
                      [x: ...]: ...;
                  };
                  $root: (...) | (...);
                  $slots: Readonly<(...)>;
                  $watch<T>(source, cb, options?): WatchStopHandle;
              } & Readonly<{
                  _disableGlobalStack: ...;
                  absolute: ...;
                  activatorProps: ...;
                  closeOnBack: ...;
                  closeOnContentClick: ...;
                  contained: ...;
                  disabled: ...;
                  eager: ...;
                  location: ...;
                  locationStrategy: ...;
                  modelValue: ...;
                  noClickAnimation: ...;
                  openOnClick: ...;
                  openOnFocus: ...;
                  openOnHover: ...;
                  origin: ...;
                  persistent: ...;
                  scrim: ...;
                  scrollStrategy: ...;
                  style: ...;
                  zIndex: ...;
              }> & Omit<(...) & (...) & (...) & (...) & (...), (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...) | (...)> & ShallowUnwrapRef<{
                  activatorEl: ...;
                  animateClick: ...;
                  contentEl: ...;
                  globalTop: ...;
                  localTop: ...;
                  scrimEl: ...;
                  target: ...;
                  updateLocation: ...;
              }> & ComponentCustomProperties, "style" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | "disabled" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "offset" | "absolute" | "target" | "location" | "origin" | "zIndex" | "eager" | "persistent" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack" | "opacity" | "transition" | "closeDelay" | "openDelay" | "activator" | "contentClass" | "contentProps" | "attach" | "v-slot:activator" | "onAfterEnter" | "onAfterLeave" | "onKeydown" | "onUpdate:modelValue" | "onClick:outside" | (keyof VNodeProps)>, `$${any}`> & {
                  _allExposed: {
                      activatorEl: Ref<(...) | (...), (...) | (...)>;
                      animateClick: (() => void);
                      contentEl: Ref<(...) | (...), (...) | (...)>;
                      globalTop: Readonly<Ref<(...), (...)>>;
                      localTop: Readonly<Ref<(...), (...)>>;
                      scrimEl: Ref<(...) | (...), (...) | (...)>;
                      target: ComputedRef<(...) | (...) | (...)>;
                      updateLocation: Ref<(...) | (...), (...) | (...)>;
                  } | {};
              }, {}, {}, {}, {
                  activatorProps: Record<string, any>;
                  closeOnBack: boolean;
                  closeOnContentClick: boolean;
                  contained: boolean;
                  disabled: boolean;
                  eager: boolean;
                  interactive: boolean;
                  location: Anchor;
                  locationStrategy: "connected" | "static" | LocationStrategyFunction;
                  minWidth: string | number;
                  modelValue: boolean;
                  noClickAnimation: boolean;
                  offset: string | number | number[] | undefined;
                  openOnClick: boolean;
                  openOnFocus: boolean;
                  openOnHover: boolean;
                  origin: "auto" | Anchor | "overlap";
                  scrim: string | boolean;
                  scrollStrategy: "none" | "block" | "close" | ScrollStrategyFunction | "reposition";
                  style: StyleValue;
                  transition: string | boolean | TransitionProps & {
                      component?: Component;
                  } | null;
                  zIndex: string | number;
              }>;
          } & ComponentOptionsBase<{
              activatorProps: Record<string, any>;
              closeOnBack: boolean;
              closeOnContentClick: boolean;
              contained: boolean;
              disabled: boolean;
              eager: boolean;
              interactive: boolean;
              location: Anchor;
              locationStrategy: "connected" | "static" | LocationStrategyFunction;
              minWidth: string | number;
              modelValue: boolean;
              noClickAnimation: boolean;
              offset: string | number | number[] | undefined;
              openOnClick: boolean;
              openOnHover: boolean;
              origin: "auto" | Anchor | "overlap";
              scrim: string | boolean;
              scrollStrategy: "none" | "block" | "close" | ScrollStrategyFunction | "reposition";
              style: StyleValue;
              transition: string | boolean | TransitionProps & {
                  component?: Component;
              } | null;
              zIndex: string | number;
          } & {
              activator?: Element | "parent" | string & {} | ComponentPublicInstance;
              attach?: string | boolean | Element;
              class?: any;
              closeDelay?: string | number;
              contentClass?: any;
              contentProps?: any;
              height?: string | number;
              id?: string;
              maxHeight?: string | number;
              maxWidth?: string | number;
              minHeight?: string | number;
              opacity?: string | number;
              openDelay?: string | number;
              openOnFocus?: boolean;
              target?: Element | "cursor" | "parent" | string & {} | ComponentPublicInstance | [x: number, y: number];
              text?: string;
              theme?: string;
              width?: string | number;
          } & {
              $children?: VNodeChild | {
                  activator?: ((arg) => ...);
                  default?: ((arg) => ...);
              } | ((arg) => VNodeChild);
              v-slots?: {
                  activator?: false | ((arg) => ...);
                  default?: false | ((arg) => ...);
              };
          } & {
              v-slot:activator?: false | ((arg) => VNodeChild);
              v-slot:default?: false | ((arg) => VNodeChild);
          } & {
              onUpdate:modelValue?: ((value) => any);
          }, Omit<Omit<{
              $: ComponentInternalInstance;
              $attrs: {
                  [x: string]: unknown;
              };
              $data: {};
              $el: any;
              $emit: (...) & (...) & (...) & (...) & (...);
              $forceUpdate: (() => void);
              $host: Element | null;
              $nextTick: nextTick;
              $options: ComponentOptionsBase<(...), (...), (...), (...), (...), (...), (...), (...), (...), (...), (...), (...), (...), (...), (...), (...), (...)> & {
                  activated?: ...;
                  beforeCreate?: ...;
                  beforeDestroy?: ...;
                  beforeMount?: ...;
                  beforeUnmount?: ...;
                  beforeUpdate?: ...;
                  created?: ...;
                  deactivated?: ...;
                  destroyed?: ...;
                  errorCaptured?: ...;
                  mounted?: ...;
                  renderTracked?: ...;
                  renderTriggered?: ...;
                  unmounted?: ...;
                  updated?: ...;
              };
              $parent: ComponentPublicInstance | null;
              $props: Partial<(...)> & Omit<(...), (...)>;
              $refs: {
                  [x: string]: unknown;
              };
              $root: ComponentPublicInstance | null;
              $slots: Readonly<{
                  activator?: ...;
                  default?: ...;
              }>;
              $watch<T>(source, cb, options?): WatchStopHandle;
          } & Readonly<{
              _disableGlobalStack: boolean;
              absolute: boolean;
              activatorProps: Record<(...), (...)>;
              closeOnBack: boolean;
              closeOnContentClick: boolean;
              contained: boolean;
              disabled: boolean;
              eager: boolean;
              location: Anchor;
              locationStrategy: (...) | (...) | (...);
              modelValue: boolean;
              noClickAnimation: boolean;
              openOnClick: boolean;
              openOnFocus: boolean;
              openOnHover: boolean;
              origin: (...) | (...) | (...);
              persistent: boolean;
              scrim: (...) | (...);
              scrollStrategy: (...) | (...) | (...) | (...) | (...);
              style: StyleValue;
              zIndex: (...) | (...);
          }> & Omit<{
              _disableGlobalStack: ...;
              absolute: ...;
              activatorProps: ...;
              closeOnBack: ...;
              closeOnContentClick: ...;
              contained: ...;
              disabled: ...;
              eager: ...;
              location: ...;
              locationStrategy: ...;
              modelValue: ...;
              noClickAnimation: ...;
              openOnHover: ...;
              origin: ...;
              persistent: ...;
              scrim: ...;
              scrollStrategy: ...;
              style: ...;
              zIndex: ...;
          } & {
              activator?: ...;
              attach?: ...;
              class?: ...;
              closeDelay?: ...;
              contentClass?: ...;
              contentProps?: ...;
              height?: ...;
              maxHeight?: ...;
              maxWidth?: ...;
              minHeight?: ...;
              minWidth?: ...;
              offset?: ...;
              opacity?: ...;
              openDelay?: ...;
              openOnClick?: ...;
              openOnFocus?: ...;
              target?: ...;
              theme?: ...;
              transition?: ...;
              width?: ...;
          } & {
              $children?: ...;
              v-slots?: ...;
          } & {
              v-slot:activator?: ...;
              v-slot:default?: ...;
          } & {
              onAfterEnter?: ...;
              onAfterLeave?: ...;
              onClick:outside?: ...;
              onKeydown?: ...;
              onUpdate:modelValue?: ...;
          }, "style" | "location" | "modelValue" | "target" | "contentEl" | "activatorEl" | "absolute" | "origin" | "zIndex" | "eager" | "disabled" | "persistent" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack" | "scrimEl" | "animateClick" | "globalTop" | "localTop" | "updateLocation"> & ShallowUnwrapRef<{
              activatorEl: Ref<(...), (...)>;
              animateClick: (() => ...);
              contentEl: Ref<(...), (...)>;
              globalTop: Readonly<(...)>;
              localTop: Readonly<(...)>;
              scrimEl: Ref<(...), (...)>;
              target: ComputedRef<(...)>;
              updateLocation: Ref<(...), (...)>;
          }> & ComponentCustomProperties, "theme" | "class" | "style" | "$children" | "v-slots" | "v-slot:default" | keyof VNodeProps | "onKeydown" | "height" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "width" | "transition" | "location" | "modelValue" | "target" | "absolute" | "origin" | "zIndex" | "eager" | "disabled" | "persistent" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "scrim" | "_disableGlobalStack" | "offset" | "opacity" | "closeDelay" | "openDelay" | "activator" | "contentClass" | "contentProps" | "attach" | "v-slot:activator" | "onAfterEnter" | "onAfterLeave" | "onUpdate:modelValue" | "onClick:outside">, `$${any}`> & {
              _allExposed: {
                  activatorEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
                  animateClick: (() => void);
                  contentEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
                  globalTop: Readonly<Ref<boolean, boolean>>;
                  localTop: Readonly<Ref<boolean, boolean>>;
                  scrimEl: Ref<HTMLElement | undefined, HTMLElement | undefined>;
                  target: ComputedRef<HTMLElement | [(...), (...)] | undefined>;
                  updateLocation: Ref<(...) | undefined, (...) | undefined>;
              } | {};
          }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
              update:modelValue: ((value) => true);
          }, string, {
              activatorProps: Record<string, any>;
              closeOnBack: boolean;
              closeOnContentClick: boolean;
              contained: boolean;
              disabled: boolean;
              eager: boolean;
              interactive: boolean;
              location: Anchor;
              locationStrategy: "connected" | "static" | LocationStrategyFunction;
              minWidth: string | number;
              modelValue: boolean;
              noClickAnimation: boolean;
              offset: string | number | number[] | undefined;
              openOnClick: boolean;
              openOnFocus: boolean;
              openOnHover: boolean;
              origin: "auto" | Anchor | "overlap";
              scrim: string | boolean;
              scrollStrategy: "none" | "block" | "close" | ScrollStrategyFunction | "reposition";
              style: StyleValue;
              transition: string | boolean | TransitionProps & {
                  component?: Component;
              } | null;
              zIndex: string | number;
          }, {}, string, SlotsType<Partial<{
              activator: ((arg) => VNode[]);
              default: ((arg) => VNode[]);
          }>>, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & FilterPropsOptions<{
              activator: PropType<Element | "parent" | string & {} | ComponentPublicInstance | undefined>;
              activatorProps: {
                  default: (() => {});
                  type: PropType<Record<string, any>>;
              };
              attach: PropType<boolean | string | Element>;
              class: PropType<ClassValue>;
              closeDelay: (StringConstructor | NumberConstructor)[];
              closeOnBack: Omit<{
                  default: boolean;
                  type: BooleanConstructor;
              }, "type" | "default"> & {
                  default: boolean;
                  type: PropType<boolean>;
              };
              closeOnContentClick: BooleanConstructor;
              contained: BooleanConstructor;
              contentClass: null;
              contentProps: null;
              disabled: BooleanConstructor;
              eager: {
                  default: boolean;
                  type: PropType<boolean>;
              };
              height: (StringConstructor | NumberConstructor)[];
              id: StringConstructor;
              interactive: BooleanConstructor;
              location: Omit<{
                  default: string;
                  type: PropType<StrategyProps["location"]>;
              }, "type" | "default"> & {
                  default: NonNullable<Anchor>;
                  type: PropType<Anchor>;
              };
              locationStrategy: Omit<{
                  default: string;
                  type: PropType<StrategyProps["locationStrategy"]>;
                  validator: ((val) => boolean);
              }, "type" | "default"> & {
                  default: NonNullable<"connected" | "static" | LocationStrategyFunction>;
                  type: PropType<"connected" | "static" | LocationStrategyFunction>;
              };
              maxHeight: (StringConstructor | NumberConstructor)[];
              maxWidth: (StringConstructor | NumberConstructor)[];
              minHeight: (StringConstructor | NumberConstructor)[];
              minWidth: {
                  default: NonNullable<string | number>;
                  type: PropType<string | number>;
              };
              modelValue: BooleanConstructor;
              noClickAnimation: BooleanConstructor;
              offset: {
                  default: NonNullable<string | number | number[] | undefined>;
                  type: PropType<string | number | number[] | undefined>;
              };
              opacity: (StringConstructor | NumberConstructor)[];
              openDelay: (StringConstructor | NumberConstructor)[];
              openOnClick: Omit<{
                  default: undefined;
                  type: BooleanConstructor;
              }, "type" | "default"> & {
                  default: boolean;
                  type: PropType<boolean>;
              };
              openOnFocus: {
                  default: undefined;
                  type: BooleanConstructor;
              };
              openOnHover: {
                  default: boolean;
                  type: PropType<boolean>;
              };
              origin: Omit<{
                  default: string;
                  type: PropType<StrategyProps["origin"]>;
              }, "type" | "default"> & {
                  default: NonNullable<"auto" | Anchor | "overlap">;
                  type: PropType<"auto" | Anchor | "overlap">;
              };
              scrim: Omit<{
                  default: boolean;
                  type: ((...) | (...))[];
              }, "type" | "default"> & {
                  default: NonNullable<string | boolean>;
                  type: PropType<string | boolean>;
              };
              scrollStrategy: Omit<{
                  default: string;
                  type: PropType<StrategyProps["scrollStrategy"]>;
                  validator: ((val) => boolean);
              }, "type" | "default"> & {
                  default: NonNullable<"none" | "block" | "close" | ScrollStrategyFunction | "reposition">;
                  type: PropType<"none" | "block" | "close" | ScrollStrategyFunction | "reposition">;
              };
              style: {
                  default: null;
                  type: PropType<StyleValue>;
              };
              target: PropType<Element | "cursor" | "parent" | string & {} | ComponentPublicInstance | [x: number, y: number] | undefined>;
              text: StringConstructor;
              theme: StringConstructor;
              transition: {
                  default: NonNullable<string | boolean | (...) & (...) | null> | null;
                  type: PropType<string | boolean | TransitionProps & {
                      component?: ...;
                  } | null>;
              };
              width: (StringConstructor | NumberConstructor)[];
              zIndex: {
                  default: number;
                  type: (StringConstructor | NumberConstructor)[];
              };
          }, ExtractPropTypes<{
              activator: PropType<Element | "parent" | string & {} | ComponentPublicInstance | undefined>;
              activatorProps: {
                  default: (() => {});
                  type: PropType<Record<string, any>>;
              };
              attach: PropType<boolean | string | Element>;
              class: PropType<ClassValue>;
              closeDelay: (StringConstructor | NumberConstructor)[];
              closeOnBack: Omit<{
                  default: boolean;
                  type: BooleanConstructor;
              }, "type" | "default"> & {
                  default: boolean;
                  type: PropType<boolean>;
              };
              closeOnContentClick: BooleanConstructor;
              contained: BooleanConstructor;
              contentClass: null;
              contentProps: null;
              disabled: BooleanConstructor;
              eager: {
                  default: boolean;
                  type: PropType<boolean>;
              };
              height: (StringConstructor | NumberConstructor)[];
              id: StringConstructor;
              interactive: BooleanConstructor;
              location: Omit<{
                  default: string;
                  type: PropType<(...)[(...)]>;
              }, "type" | "default"> & {
                  default: NonNullable<Anchor>;
                  type: PropType<Anchor>;
              };
              locationStrategy: Omit<{
                  default: string;
                  type: PropType<(...)[(...)]>;
                  validator: ((val) => boolean);
              }, "type" | "default"> & {
                  default: NonNullable<"connected" | "static" | LocationStrategyFunction>;
                  type: PropType<"connected" | "static" | LocationStrategyFunction>;
              };
              maxHeight: (StringConstructor | NumberConstructor)[];
              maxWidth: (StringConstructor | NumberConstructor)[];
              minHeight: (StringConstructor | NumberConstructor)[];
              minWidth: {
                  default: NonNullable<string | number>;
                  type: PropType<string | number>;
              };
              modelValue: BooleanConstructor;
              noClickAnimation: BooleanConstructor;
              offset: {
                  default: NonNullable<string | number | number[] | undefined>;
                  type: PropType<string | number | number[] | undefined>;
              };
              opacity: (StringConstructor | NumberConstructor)[];
              openDelay: (StringConstructor | NumberConstructor)[];
              openOnClick: Omit<{
                  default: undefined;
                  type: BooleanConstructor;
              }, "type" | "default"> & {
                  default: boolean;
                  type: PropType<boolean>;
              };
              openOnFocus: {
                  default: undefined;
                  type: BooleanConstructor;
              };
              openOnHover: {
                  default: boolean;
                  type: PropType<boolean>;
              };
              origin: Omit<{
                  default: string;
                  type: PropType<(...)[(...)]>;
              }, "type" | "default"> & {
                  default: NonNullable<"auto" | Anchor | "overlap">;
                  type: PropType<"auto" | Anchor | "overlap">;
              };
              scrim: Omit<{
                  default: boolean;
                  type: (...)[];
              }, "type" | "default"> & {
                  default: NonNullable<string | boolean>;
                  type: PropType<string | boolean>;
              };
              scrollStrategy: Omit<{
                  default: string;
                  type: PropType<(...)[(...)]>;
                  validator: ((val) => boolean);
              }, "type" | "default"> & {
                  default: NonNullable<"none" | "block" | "close" | ScrollStrategyFunction | "reposition">;
                  type: PropType<"none" | "block" | "close" | ScrollStrategyFunction | "reposition">;
              };
              style: {
                  default: null;
                  type: PropType<StyleValue>;
              };
              target: PropType<Element | "cursor" | "parent" | string & {} | ComponentPublicInstance | [x: number, y: number] | undefined>;
              text: StringConstructor;
              theme: StringConstructor;
              transition: {
                  default: NonNullable<string | boolean | (...) | null> | null;
                  type: PropType<string | boolean | (...) & (...) | null>;
              };
              width: (StringConstructor | NumberConstructor)[];
              zIndex: {
                  default: number;
                  type: (StringConstructor | NumberConstructor)[];
              };
          }>>
        • ValidationIcon: DefineComponent<ExtractPropTypes<{
              errors: {
                  required: true;
                  type: PropType<ErrorObject[]>;
              };
          }>, {
              icons: {
                  current: ComputedRef<IconAliases>;
              };
          }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<{
              errors: {
                  required: true;
                  type: PropType<ErrorObject[]>;
              };
          }>> & Readonly<{}>, {}, {}, {
              VIcon: {
                  __isFragment?: never;
                  __isSuspense?: never;
                  __isTeleport?: never;
                  new (...args): CreateComponentPublicInstanceWithMixins<{
                      disabled: boolean;
                      end: boolean;
                      size: string | number;
                      start: boolean;
                      style: StyleValue;
                      tag: string | JSXComponent;
                  } & {
                      class?: any;
                      color?: string;
                      icon?: IconValue;
                      opacity?: string | number;
                      theme?: string;
                  } & {
                      $children?: VNodeChild | {
                          default?: ...;
                      } | (...);
                      v-slots?: {
                          default?: ...;
                      };
                  } & {
                      v-slot:default?: false | (...);
                  }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, VNodeProps & AllowedComponentProps & ComponentCustomProps, {
                      disabled: boolean;
                      end: boolean;
                      size: string | number;
                      start: boolean;
                      style: StyleValue;
                      tag: string | JSXComponent;
                  }, true, {}, SlotsType<Partial<{
                      default: (() => ...);
                  }>>, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
                      B: {};
                      C: {};
                      D: {};
                      Defaults: {};
                      M: {};
                      P: {};
                  }, {
                      disabled: boolean;
                      end: boolean;
                      size: string | number;
                      start: boolean;
                      style: StyleValue;
                      tag: string | JSXComponent;
                  } & {
                      class?: any;
                      color?: string;
                      icon?: IconValue;
                      opacity?: string | number;
                      theme?: string;
                  } & {
                      $children?: VNodeChild | {
                          default?: ...;
                      } | (...);
                      v-slots?: {
                          default?: ...;
                      };
                  } & {
                      v-slot:default?: false | (...);
                  }, {}, {}, {}, {}, {
                      disabled: boolean;
                      end: boolean;
                      size: string | number;
                      start: boolean;
                      style: StyleValue;
                      tag: string | JSXComponent;
                  }>;
              } & ComponentOptionsBase<{
                  disabled: boolean;
                  end: boolean;
                  size: string | number;
                  start: boolean;
                  style: StyleValue;
                  tag: string | JSXComponent;
              } & {
                  class?: any;
                  color?: string;
                  icon?: IconValue;
                  opacity?: string | number;
                  theme?: string;
              } & {
                  $children?: VNodeChild | {
                      default?: (...) | (...);
                  } | (() => ...);
                  v-slots?: {
                      default?: (...) | (...) | (...);
                  };
              } & {
                  v-slot:default?: false | (() => ...);
              }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, {
                  disabled: boolean;
                  end: boolean;
                  size: string | number;
                  start: boolean;
                  style: StyleValue;
                  tag: string | JSXComponent;
              }, {}, string, SlotsType<Partial<{
                  default: (() => (...)[]);
              }>>, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & FilterPropsOptions<{
                  class: PropType<ClassValue>;
                  color: StringConstructor;
                  disabled: BooleanConstructor;
                  end: BooleanConstructor;
                  icon: PropType<IconValue>;
                  opacity: (StringConstructor | NumberConstructor)[];
                  size: {
                      default: string;
                      type: ((...) | (...))[];
                  };
                  start: BooleanConstructor;
                  style: {
                      default: null;
                      type: PropType<StyleValue>;
                  };
                  tag: Omit<{
                      default: string;
                      type: PropType<(...)>;
                  }, "type" | "default"> & {
                      default: NonNullable<(...) | (...)>;
                      type: PropType<(...) | (...)>;
                  };
                  theme: StringConstructor;
              }, ExtractPropTypes<{
                  class: PropType<ClassValue>;
                  color: StringConstructor;
                  disabled: BooleanConstructor;
                  end: BooleanConstructor;
                  icon: PropType<IconValue>;
                  opacity: ((...) | (...))[];
                  size: {
                      default: string;
                      type: (...)[];
                  };
                  start: BooleanConstructor;
                  style: {
                      default: null;
                      type: PropType<StyleValue>;
                  };
                  tag: Omit<{
                      default: ...;
                      type: ...;
                  }, (...) | (...)> & {
                      default: NonNullable<(...)>;
                      type: PropType<(...)>;
                  };
                  theme: StringConstructor;
              }>>;
              ValidationBadge: DefineComponent<ExtractPropTypes<{
                  bordered: {
                      default: boolean;
                      type: BooleanConstructor;
                  };
                  color: {
                      default: string;
                      type: StringConstructor;
                  };
                  errors: {
                      required: true;
                      type: PropType<ErrorObject[]>;
                  };
                  floating: {
                      default: boolean;
                      type: BooleanConstructor;
                  };
                  inline: {
                      default: boolean;
                      type: BooleanConstructor;
                  };
                  offsetX: {
                      default: undefined;
                      type: ((...) | (...))[];
                  };
                  offsetY: {
                      default: undefined;
                      type: ((...) | (...))[];
                  };
              }>, {
                  t: ComputedRef<Translator> | null;
              }, {}, {
                  tooltipMessages(): string[];
              }, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes<{
                  bordered: {
                      default: boolean;
                      type: BooleanConstructor;
                  };
                  color: {
                      default: string;
                      type: StringConstructor;
                  };
                  errors: {
                      required: true;
                      type: PropType<(...)>;
                  };
                  floating: {
                      default: boolean;
                      type: BooleanConstructor;
                  };
                  inline: {
                      default: boolean;
                      type: BooleanConstructor;
                  };
                  offsetX: {
                      default: undefined;
                      type: (...)[];
                  };
                  offsetY: {
                      default: undefined;
                      type: (...)[];
                  };
              }>> & Readonly<{}>, {
                  bordered: boolean;
                  color: string;
                  floating: boolean;
                  inline: boolean;
                  offsetX: string | number;
                  offsetY: string | number;
              }, {}, {
                  VBadge: {
                      __isFragment?: never;
                      __isSuspense?: never;
                      __isTeleport?: never;
                      new (...args): CreateComponentPublicInstanceWithMixins<{
                          bordered: ...;
                          dot: ...;
                          floating: ...;
                          inline: ...;
                          label: ...;
                          location: ...;
                          modelValue: ...;
                          style: ...;
                          tag: ...;
                          tile: ...;
                          transition: ...;
                      } & {
                          class?: ...;
                          color?: ...;
                          content?: ...;
                          height?: ...;
                          icon?: ...;
                          max?: ...;
                          maxHeight?: ...;
                          maxWidth?: ...;
                          minHeight?: ...;
                          minWidth?: ...;
                          offsetX?: ...;
                          offsetY?: ...;
                          rounded?: ...;
                          textColor?: ...;
                          theme?: ...;
                          width?: ...;
                      } & {
                          $children?: ...;
                          v-slots?: ...;
                      } & {
                          v-slot:badge?: ...;
                          v-slot:default?: ...;
                      }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, VNodeProps & AllowedComponentProps & ComponentCustomProps, {
                          bordered: boolean;
                          dot: boolean;
                          floating: boolean;
                          inline: boolean;
                          label: string;
                          location: (...) | (...);
                          modelValue: boolean;
                          rounded: (...) | (...) | (...);
                          style: StyleValue;
                          tag: (...) | (...);
                          tile: boolean;
                          transition: (...) | (...) | (...) | (...);
                      }, true, {}, SlotsType<Partial<(...)>>, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
                          B: {};
                          C: {};
                          D: {};
                          Defaults: {};
                          M: {};
                          P: {};
                      }, {
                          bordered: ...;
                          dot: ...;
                          floating: ...;
                          inline: ...;
                          label: ...;
                          location: ...;
                          modelValue: ...;
                          style: ...;
                          tag: ...;
                          tile: ...;
                          transition: ...;
                      } & {
                          class?: ...;
                          color?: ...;
                          content?: ...;
                          height?: ...;
                          icon?: ...;
                          max?: ...;
                          maxHeight?: ...;
                          maxWidth?: ...;
                          minHeight?: ...;
                          minWidth?: ...;
                          offsetX?: ...;
                          offsetY?: ...;
                          rounded?: ...;
                          textColor?: ...;
                          theme?: ...;
                          width?: ...;
                      } & {
                          $children?: ...;
                          v-slots?: ...;
                      } & {
                          v-slot:badge?: ...;
                          v-slot:default?: ...;
                      }, {}, {}, {}, {}, {
                          bordered: boolean;
                          dot: boolean;
                          floating: boolean;
                          inline: boolean;
                          label: string;
                          location: (...) | (...);
                          modelValue: boolean;
                          rounded: (...) | (...) | (...);
                          style: StyleValue;
                          tag: (...) | (...);
                          tile: boolean;
                          transition: (...) | (...) | (...) | (...);
                      }>;
                  } & ComponentOptionsBase<{
                      bordered: boolean;
                      dot: boolean;
                      floating: boolean;
                      inline: boolean;
                      label: string;
                      location: (...) | (...);
                      modelValue: boolean;
                      style: StyleValue;
                      tag: (...) | (...);
                      tile: boolean;
                      transition: (...) | (...) | (...) | (...);
                  } & {
                      class?: any;
                      color?: (...) | (...);
                      content?: (...) | (...) | (...);
                      height?: (...) | (...) | (...);
                      icon?: (...) | (...);
                      max?: (...) | (...) | (...);
                      maxHeight?: (...) | (...) | (...);
                      maxWidth?: (...) | (...) | (...);
                      minHeight?: (...) | (...) | (...);
                      minWidth?: (...) | (...) | (...);
                      offsetX?: (...) | (...) | (...);
                      offsetY?: (...) | (...) | (...);
                      rounded?: (...) | (...) | (...) | (...);
                      textColor?: (...) | (...);
                      theme?: (...) | (...);
                      width?: (...) | (...) | (...);
                  } & {
                      $children?: (...) | (...) | (...);
                      v-slots?: (...) | (...);
                  } & {
                      v-slot:badge?: (...) | (...) | (...);
                      v-slot:default?: (...) | (...) | (...);
                  }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Record<string, any>, string, {
                      bordered: boolean;
                      dot: boolean;
                      floating: boolean;
                      inline: boolean;
                      label: string;
                      location: Anchor | null;
                      modelValue: boolean;
                      rounded: string | number | boolean;
                      style: StyleValue;
                      tag: string | JSXComponent;
                      tile: boolean;
                      transition: string | boolean | (...) | null;
                  }, {}, string, SlotsType<Partial<{
                      badge: ...;
                      default: ...;
                  }>>, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & FilterPropsOptions<{
                      bordered: BooleanConstructor;
                      class: PropType<ClassValue>;
                      color: StringConstructor;
                      content: (...)[];
                      dot: BooleanConstructor;
                      floating: BooleanConstructor;
                      height: (...)[];
                      icon: PropType<IconValue>;
                      inline: BooleanConstructor;
                      label: {
                          default: string;
                          type: StringConstructor;
                      };
                      location: {
                          default: NonNullable<(...)>;
                          type: PropType<(...)>;
                      };
                      max: (...)[];
                      maxHeight: (...)[];
                      maxWidth: (...)[];
                      minHeight: (...)[];
                      minWidth: (...)[];
                      modelValue: {
                          default: boolean;
                          type: BooleanConstructor;
                      };
                      offsetX: (...)[];
                      offsetY: (...)[];
                      rounded: {
                          default: undefined;
                          type: (...)[];
                      };
                      style: {
                          default: null;
                          type: PropType<(...)>;
                      };
                      tag: {
                          default: string;
                          type: PropType<(...)>;
                      };
                      textColor: StringConstructor;
                      theme: StringConstructor;
                      tile: BooleanConstructor;
                      transition: {
                          default: NonNullable<(...)>;
                          type: PropType<(...)>;
                      };
                      width: (...)[];
                  }, ExtractPropTypes<{
                      bordered: BooleanConstructor;
                      class: PropType<(...)>;
                      color: StringConstructor;
                      content: (...)[];
                      dot: BooleanConstructor;
                      floating: BooleanConstructor;
                      height: (...)[];
                      icon: PropType<(...)>;
                      inline: BooleanConstructor;
                      label: {
                          default: ...;
                          type: ...;
                      };
                      location: {
                          default: ...;
                          type: ...;
                      };
                      max: (...)[];
                      maxHeight: (...)[];
                      maxWidth: (...)[];
                      minHeight: (...)[];
                      minWidth: (...)[];
                      modelValue: {
                          default: ...;
                          type: ...;
                      };
                      offsetX: (...)[];
                      offsetY: (...)[];
                      rounded: {
                          default: ...;
                          type: ...;
                      };
                      style: {
                          default: ...;
                          type: ...;
                      };
                      tag: {
                          default: ...;
                          type: ...;
                      };
                      textColor: StringConstructor;
                      theme: StringConstructor;
                      tile: BooleanConstructor;
                      transition: {
                          default: ...;
                          type: ...;
                      };
                      width: (...)[];
                  }>>;
                  VTooltip: {
                      __isFragment?: never;
                      __isSuspense?: never;
                      __isTeleport?: never;
                      new (...args): CreateComponentPublicInstanceWithMixins<{
                          activatorProps: ...;
                          closeOnBack: ...;
                          closeOnContentClick: ...;
                          contained: ...;
                          disabled: ...;
                          eager: ...;
                          interactive: ...;
                          location: ...;
                          locationStrategy: ...;
                          minWidth: ...;
                          modelValue: ...;
                          noClickAnimation: ...;
                          offset: ...;
                          openOnClick: ...;
                          openOnHover: ...;
                          origin: ...;
                          scrim: ...;
                          scrollStrategy: ...;
                          style: ...;
                          transition: ...;
                          zIndex: ...;
                      } & {
                          activator?: ...;
                          attach?: ...;
                          class?: ...;
                          closeDelay?: ...;
                          contentClass?: ...;
                          contentProps?: ...;
                          height?: ...;
                          id?: ...;
                          maxHeight?: ...;
                          maxWidth?: ...;
                          minHeight?: ...;
                          opacity?: ...;
                          openDelay?: ...;
                          openOnFocus?: ...;
                          target?: ...;
                          text?: ...;
                          theme?: ...;
                          width?: ...;
                      } & {
                          $children?: ...;
                          v-slots?: ...;
                      } & {
                          v-slot:activator?: ...;
                          v-slot:default?: ...;
                      } & {
                          onUpdate:modelValue?: ...;
                      }, Omit<(...), (...)> & {
                          _allExposed: ...;
                      }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
                          update:modelValue: ((value) => ...);
                      }, VNodeProps & AllowedComponentProps & ComponentCustomProps, {
                          activatorProps: Record<(...), (...)>;
                          closeOnBack: boolean;
                          closeOnContentClick: boolean;
                          contained: boolean;
                          disabled: boolean;
                          eager: boolean;
                          interactive: boolean;
                          location: Anchor;
                          locationStrategy: (...) | (...) | (...);
                          minWidth: (...) | (...);
                          modelValue: boolean;
                          noClickAnimation: boolean;
                          offset: (...) | (...) | (...) | (...);
                          openOnClick: boolean;
                          openOnFocus: boolean;
                          openOnHover: boolean;
                          origin: (...) | (...) | (...);
                          scrim: (...) | (...);
                          scrollStrategy: (...) | (...) | (...) | (...) | (...);
                          style: StyleValue;
                          transition: (...) | (...) | (...) | (...);
                          zIndex: (...) | (...);
                      }, true, {}, SlotsType<Partial<(...)>>, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
                          B: {};
                          C: {};
                          D: {};
                          Defaults: {};
                          M: {};
                          P: {};
                      }, {
                          activatorProps: ...;
                          closeOnBack: ...;
                          closeOnContentClick: ...;
                          contained: ...;
                          disabled: ...;
                          eager: ...;
                          interactive: ...;
                          location: ...;
                          locationStrategy: ...;
                          minWidth: ...;
                          modelValue: ...;
                          noClickAnimation: ...;
                          offset: ...;
                          openOnClick: ...;
                          openOnHover: ...;
                          origin: ...;
                          scrim: ...;
                          scrollStrategy: ...;
                          style: ...;
                          transition: ...;
                          zIndex: ...;
                      } & {
                          activator?: ...;
                          attach?: ...;
                          class?: ...;
                          closeDelay?: ...;
                          contentClass?: ...;
                          contentProps?: ...;
                          height?: ...;
                          id?: ...;
                          maxHeight?: ...;
                          maxWidth?: ...;
                          minHeight?: ...;
                          opacity?: ...;
                          openDelay?: ...;
                          openOnFocus?: ...;
                          target?: ...;
                          text?: ...;
                          theme?: ...;
                          width?: ...;
                      } & {
                          $children?: ...;
                          v-slots?: ...;
                      } & {
                          v-slot:activator?: ...;
                          v-slot:default?: ...;
                      } & {
                          onUpdate:modelValue?: ...;
                      }, Omit<(...), (...)> & {
                          _allExposed: ...;
                      }, {}, {}, {}, {
                          activatorProps: Record<(...), (...)>;
                          closeOnBack: boolean;
                          closeOnContentClick: boolean;
                          contained: boolean;
                          disabled: boolean;
                          eager: boolean;
                          interactive: boolean;
                          location: Anchor;
                          locationStrategy: (...) | (...) | (...);
                          minWidth: (...) | (...);
                          modelValue: boolean;
                          noClickAnimation: boolean;
                          offset: (...) | (...) | (...) | (...);
                          openOnClick: boolean;
                          openOnFocus: boolean;
                          openOnHover: boolean;
                          origin: (...) | (...) | (...);
                          scrim: (...) | (...);
                          scrollStrategy: (...) | (...) | (...) | (...) | (...);
                          style: StyleValue;
                          transition: (...) | (...) | (...) | (...);
                          zIndex: (...) | (...);
                      }>;
                  } & ComponentOptionsBase<{
                      activatorProps: Record<(...), (...)>;
                      closeOnBack: boolean;
                      closeOnContentClick: boolean;
                      contained: boolean;
                      disabled: boolean;
                      eager: boolean;
                      interactive: boolean;
                      location: Anchor;
                      locationStrategy: (...) | (...) | (...);
                      minWidth: (...) | (...);
                      modelValue: boolean;
                      noClickAnimation: boolean;
                      offset: (...) | (...) | (...) | (...);
                      openOnClick: boolean;
                      openOnHover: boolean;
                      origin: (...) | (...) | (...);
                      scrim: (...) | (...);
                      scrollStrategy: (...) | (...) | (...) | (...) | (...);
                      style: StyleValue;
                      transition: (...) | (...) | (...) | (...);
                      zIndex: (...) | (...);
                  } & {
                      activator?: (...) | (...) | (...) | (...) | (...);
                      attach?: (...) | (...) | (...) | (...);
                      class?: any;
                      closeDelay?: (...) | (...) | (...);
                      contentClass?: any;
                      contentProps?: any;
                      height?: (...) | (...) | (...);
                      id?: (...) | (...);
                      maxHeight?: (...) | (...) | (...);
                      maxWidth?: (...) | (...) | (...);
                      minHeight?: (...) | (...) | (...);
                      opacity?: (...) | (...) | (...);
                      openDelay?: (...) | (...) | (...);
                      openOnFocus?: (...) | (...);
                      target?: (...) | (...) | (...) | (...) | (...) | (...) | (...);
                      text?: (...) | (...);
                      theme?: (...) | (...);
                      width?: (...) | (...) | (...);
                  } & {
                      $children?: (...) | (...) | (...);
                      v-slots?: (...) | (...);
                  } & {
                      v-slot:activator?: (...) | (...) | (...);
                      v-slot:default?: (...) | (...) | (...);
                  } & {
                      onUpdate:modelValue?: (...) | (...);
                  }, Omit<Omit<(...), (...)>, `$${(...)}`> & {
                      _allExposed: (...) | (...);
                  }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
                      update:modelValue: ((value) => true);
                  }, string, {
                      activatorProps: Record<string, any>;
                      closeOnBack: boolean;
                      closeOnContentClick: boolean;
                      contained: boolean;
                      disabled: boolean;
                      eager: boolean;
                      interactive: boolean;
                      location: Anchor;
                      locationStrategy: "connected" | "static" | LocationStrategyFunction;
                      minWidth: string | number;
                      modelValue: boolean;
                      noClickAnimation: boolean;
                      offset: string | number | (...)[] | undefined;
                      openOnClick: boolean;
                      openOnFocus: boolean;
                      openOnHover: boolean;
                      origin: "auto" | Anchor | "overlap";
                      scrim: string | boolean;
                      scrollStrategy: "none" | "block" | "close" | ScrollStrategyFunction | "reposition";
                      style: StyleValue;
                      transition: string | boolean | (...) | null;
                      zIndex: string | number;
                  }, {}, string, SlotsType<Partial<{
                      activator: ...;
                      default: ...;
                  }>>, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & FilterPropsOptions<{
                      activator: PropType<(...) | (...) | (...) | (...) | (...)>;
                      activatorProps: {
                          default: (() => ...);
                          type: PropType<(...)>;
                      };
                      attach: PropType<(...) | (...) | (...)>;
                      class: PropType<ClassValue>;
                      closeDelay: (...)[];
                      closeOnBack: Omit<(...), (...)> & {
                          default: ...;
                          type: ...;
                      };
                      closeOnContentClick: BooleanConstructor;
                      contained: BooleanConstructor;
                      contentClass: null;
                      contentProps: null;
                      disabled: BooleanConstructor;
                      eager: {
                          default: boolean;
                          type: PropType<(...)>;
                      };
                      height: (...)[];
                      id: StringConstructor;
                      interactive: BooleanConstructor;
                      location: Omit<(...), (...)> & {
                          default: ...;
                          type: ...;
                      };
                      locationStrategy: Omit<(...), (...)> & {
                          default: ...;
                          type: ...;
                      };
                      maxHeight: (...)[];
                      maxWidth: (...)[];
                      minHeight: (...)[];
                      minWidth: {
                          default: NonNullable<(...)>;
                          type: PropType<(...)>;
                      };
                      modelValue: BooleanConstructor;
                      noClickAnimation: BooleanConstructor;
                      offset: {
                          default: NonNullable<(...)>;
                          type: PropType<(...)>;
                      };
                      opacity: (...)[];
                      openDelay: (...)[];
                      openOnClick: Omit<(...), (...)> & {
                          default: ...;
                          type: ...;
                      };
                      openOnFocus: {
                          default: undefined;
                          type: BooleanConstructor;
                      };
                      openOnHover: {
                          default: boolean;
                          type: PropType<(...)>;
                      };
                      origin: Omit<(...), (...)> & {
                          default: ...;
                          type: ...;
                      };
                      scrim: Omit<(...), (...)> & {
                          default: ...;
                          type: ...;
                      };
                      scrollStrategy: Omit<(...), (...)> & {
                          default: ...;
                          type: ...;
                      };
                      style: {
                          default: null;
                          type: PropType<(...)>;
                      };
                      target: PropType<(...) | (...) | (...) | (...) | (...) | (...) | (...)>;
                      text: StringConstructor;
                      theme: StringConstructor;
                      transition: {
                          default: (...) | (...);
                          type: PropType<(...)>;
                      };
                      width: (...)[];
                      zIndex: {
                          default: number;
                          type: (...)[];
                      };
                  }, ExtractPropTypes<{
                      activator: PropType<(...)>;
                      activatorProps: {
                          default: ...;
                          type: ...;
                      };
                      attach: PropType<(...)>;
                      class: PropType<(...)>;
                      closeDelay: (...)[];
                      closeOnBack: (...) & (...);
                      closeOnContentClick: BooleanConstructor;
                      contained: BooleanConstructor;
                      contentClass: null;
                      contentProps: null;
                      disabled: BooleanConstructor;
                      eager: {
                          default: ...;
                          type: ...;
                      };
                      height: (...)[];
                      id: StringConstructor;
                      interactive: BooleanConstructor;
                      location: (...) & (...);
                      locationStrategy: (...) & (...);
                      maxHeight: (...)[];
                      maxWidth: (...)[];
                      minHeight: (...)[];
                      minWidth: {
                          default: ...;
                          type: ...;
                      };
                      modelValue: BooleanConstructor;
                      noClickAnimation: BooleanConstructor;
                      offset: {
                          default: ...;
                          type: ...;
                      };
                      opacity: (...)[];
                      openDelay: (...)[];
                      openOnClick: (...) & (...);
                      openOnFocus: {
                          default: ...;
                          type: ...;
                      };
                      openOnHover: {
                          default: ...;
                          type: ...;
                      };
                      origin: (...) & (...);
                      scrim: (...) & (...);
                      scrollStrategy: (...) & (...);
                      style: {
                          default: ...;
                          type: ...;
                      };
                      target: PropType<(...)>;
                      text: StringConstructor;
                      theme: StringConstructor;
                      transition: {
                          default: ...;
                          type: ...;
                      };
                      width: (...)[];
                      zIndex: {
                          default: ...;
                          type: ...;
                      };
                  }>>;
              }, {}, string, ComponentProvideOptions, true, {}, any>;
          }, {}, string, ComponentProvideOptions, true, {}, any>

        Type declaration

          Type declaration