import type { ReactNode, Ref } from 'react'; import type { BaseProps, ForwardRefForwardPropsComponent } from '../../types'; export interface CardHeaderProps extends BaseProps { /** The Card header content. */ children: ReactNode; /** Action Buttons that will render within the header. */ actions?: ReactNode; /** Ref for the wrapping element. */ ref?: Ref; } export declare const StyledCardHeader: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLElement>, CardHeaderProps>> & string; declare const CardHeader: ForwardRefForwardPropsComponent; export default CardHeader; //# sourceMappingURL=CardHeader.d.ts.map