import React, { HTMLAttributes } from 'react';
export interface HeaderContentProps extends HTMLAttributes {
/** Classi aggiuntive da usare per il componente HeaderContent */
className?: string;
/** Da utilizzare per indicare che all'interno dell'Header verrĂ utilizzato un Megamenu */
megamenu?: boolean;
/** Parametro per il controllo responsive del componente secondo Bootstrap Italia. */
expand?: boolean | 'sm' | 'md' | 'lg' | 'xl';
testId?: string;
}
export declare const HeaderContent: ({ className, megamenu, testId, ...attributes }: HeaderContentProps) => React.JSX.Element;