import { default as React, ComponentPropsWithoutRef } from 'react'; export interface CardHeaderProps extends ComponentPropsWithoutRef<'div'> { /** * Specify the content for the card header */ children?: React.ReactNode; } export declare const Header: { ({ children, className: _className, ...props }: CardHeaderProps): import("react/jsx-runtime").JSX.Element; displayName: string; Heading: { ({ children, className: _className, ...props }: CardHeaderHeadingProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; HeadingText: { ({ children, className: _className, ...props }: CardHeaderHeadingTextProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; Eyebrow: { ({ children, className: _className, ...props }: CardHeaderEyebrowProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; SupportingText: { ({ children, className: _className, ...props }: CardHeaderSupportingTextProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; ContentBefore: { ({ children, className: _className, ...props }: CardHeaderContentBeforeProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; ContentAfter: { ({ children, className: _className, ...props }: CardHeaderContentAfterProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; }; export interface CardHeaderHeadingProps extends ComponentPropsWithoutRef<'div'> { /** * Specify the content for the card header heading */ children?: React.ReactNode; } export declare const Heading: { ({ children, className: _className, ...props }: CardHeaderHeadingProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export interface CardHeaderHeadingTextProps extends ComponentPropsWithoutRef<'div'> { /** * Specify the content for the card heading text */ children?: React.ReactNode; } export declare const HeadingText: { ({ children, className: _className, ...props }: CardHeaderHeadingTextProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export interface CardHeaderEyebrowProps extends ComponentPropsWithoutRef<'div'> { /** * Specify the content for the card header eyebrow */ children?: React.ReactNode; } export declare const Eyebrow: { ({ children, className: _className, ...props }: CardHeaderEyebrowProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export interface CardHeaderSupportingTextProps extends ComponentPropsWithoutRef<'div'> { /** * Specify the content for the card header supporting text */ children?: React.ReactNode; } export declare const SupportingText: { ({ children, className: _className, ...props }: CardHeaderSupportingTextProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export interface CardHeaderContentBeforeProps extends ComponentPropsWithoutRef<'div'> { /** * Specify the content for the card header content before */ children?: React.ReactNode; } export declare const ContentBefore: { ({ children, className: _className, ...props }: CardHeaderContentBeforeProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export interface CardHeaderContentAfterProps extends ComponentPropsWithoutRef<'div'> { /** * Specify the content for the card header content after */ children?: React.ReactNode; } export declare const ContentAfter: { ({ children, className: _className, ...props }: CardHeaderContentAfterProps): import("react/jsx-runtime").JSX.Element; displayName: string; };