import { ReactNode } from 'react'; import { ButtonProps } from '../Button'; export interface HeaderActionProps extends Omit { /** * Provide an icon for the action */ 'icon'?: ReactNode; /** * Provide an aria-label for the action */ 'aria-label'?: string; } export declare const HeaderAction: import('react').ForwardRefExoticComponent>;