declare function __VLS_template(): {
    attrs: Partial<{}>;
    slots: Readonly<{
        default(): any;
        card(): any;
        main(): any;
        icon(): any;
        title(): any;
        header(): any;
        footer(): any;
        detail(): any;
        cover(): any;
    }> & {
        default(): any;
        card(): any;
        main(): any;
        icon(): any;
        title(): any;
        header(): any;
        footer(): any;
        detail(): any;
        cover(): any;
    };
    refs: {};
    rootEl: any;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
    layout: {
        type: import('vue').PropType<import('./types').CardDirectionT>;
        default: string;
    };
    cover: {
        type: StringConstructor;
    };
    coverRatio: {
        type: NumberConstructor;
    };
    coverFit: {
        type: import('vue').PropType<import('./types').CardCoverFitT>;
        default: string;
    };
    icon: {
        type: import('vue').PropType<string | import('vue').Component>;
    };
    titleIcon: {
        type: import('vue').PropType<string | import('vue').Component>;
    };
    title: {
        type: StringConstructor;
    };
    titleRow: {
        type: NumberConstructor;
    };
    titleMaxRow: {
        type: NumberConstructor;
    };
    detail: {
        type: StringConstructor;
    };
    detailRow: {
        type: NumberConstructor;
    };
    detailMaxRow: {
        type: NumberConstructor;
    };
    hoverable: {
        type: BooleanConstructor;
    };
    cursor: {
        type: import('vue').PropType<import('./types').CardHoverCursorT>;
        default: string;
    };
    coverClass: {
        type: import('vue').PropType<string | any[]>;
    };
    href: {
        type: StringConstructor;
    };
    noResponsive: {
        type: BooleanConstructor;
    };
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
    layout: {
        type: import('vue').PropType<import('./types').CardDirectionT>;
        default: string;
    };
    cover: {
        type: StringConstructor;
    };
    coverRatio: {
        type: NumberConstructor;
    };
    coverFit: {
        type: import('vue').PropType<import('./types').CardCoverFitT>;
        default: string;
    };
    icon: {
        type: import('vue').PropType<string | import('vue').Component>;
    };
    titleIcon: {
        type: import('vue').PropType<string | import('vue').Component>;
    };
    title: {
        type: StringConstructor;
    };
    titleRow: {
        type: NumberConstructor;
    };
    titleMaxRow: {
        type: NumberConstructor;
    };
    detail: {
        type: StringConstructor;
    };
    detailRow: {
        type: NumberConstructor;
    };
    detailMaxRow: {
        type: NumberConstructor;
    };
    hoverable: {
        type: BooleanConstructor;
    };
    cursor: {
        type: import('vue').PropType<import('./types').CardHoverCursorT>;
        default: string;
    };
    coverClass: {
        type: import('vue').PropType<string | any[]>;
    };
    href: {
        type: StringConstructor;
    };
    noResponsive: {
        type: BooleanConstructor;
    };
}>> & Readonly<{}>, {
    cursor: "auto" | "pointer";
    layout: import('./types').CardDirectionT;
    coverFit: "fill" | "none" | "contain" | "cover" | "scale-down";
    hoverable: boolean;
    noResponsive: boolean;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
