import type { HTMLAttributes, ReactElement } from "react";
/**
 * This component is used to dynamically add addons to the `CardHeader`
 * component. When no children are provided, nothing will be rendered.
 *
 * @internal
 */
export declare function CardHeaderAddon({ className, children, ...props }: HTMLAttributes<HTMLSpanElement>): ReactElement | null;
