/// <reference types="react" />
import { ProCardContent } from './Content';
import { ProCardDescriptions } from './Descriptions';
import { ProCardHeader } from './Header';
export type { ProCardProps } from './Card';
export type { ProCardContentProps } from './Content';
export type { ProCardDescriptionsProps } from './Descriptions';
export type { ProCardHeaderProps } from './Header';
export declare const ProCard: import("react").FC<import("./Card").ProCardProps> & {
    Header: typeof ProCardHeader;
    Descriptions: typeof ProCardDescriptions;
    Content: typeof ProCardContent;
};
