import React from 'react';
import { IHeaderStructure } from './types/headerStructure';
/**
 * @deprecated This component has been deprecated and will be removed in the next MAJOR release. Will include all this on the NavBar component
 */
declare const HeaderStructure: <V extends string | unknown>(props: IHeaderStructure<V> & {
    ref?: React.ForwardedRef<HTMLDivElement> | undefined | null;
}) => React.JSX.Element;
export { HeaderStructure };
