import type { ReactNode } from 'react';
type BaseContentCardGroupProps = {
    children: ReactNode;
    loading?: boolean;
};
export declare const ContentCardGroup: import("react").ForwardRefExoticComponent<BaseContentCardGroupProps & import("react").RefAttributes<HTMLDivElement>> & {
    Card: import("react").ForwardRefExoticComponent<{
        title?: string;
        titleAs?: import("react").ElementType;
        subtitle?: string;
        subtitleAs?: import("react").ElementType;
        description?: string;
        children?: ReactNode;
        href: string;
        target?: import("react").AnchorHTMLAttributes<HTMLAnchorElement>["target"];
    } & import("react").RefAttributes<HTMLAnchorElement>>;
};
export {};
