import { HTMLAttributes } from 'react';
declare const CardInternal: {
Root: import("react").ComponentType, HTMLDivElement>>;
Header: import("react").ForwardRefExoticComponent<{
hideDivider?: boolean;
} & HTMLAttributes & import("react").RefAttributes>;
Content: import("react").ComponentType, HTMLDivElement>>;
Footer: import("react").ComponentType, HTMLDivElement>>;
};
export type CardType = typeof CardInternal.Root & {
Header: typeof CardInternal.Header;
Content: typeof CardInternal.Content;
Footer: typeof CardInternal.Footer;
};
export declare const Card: CardType;
export {};