import { FunctionComponent, ReactNode } from 'react';
import { HeaderProps } from './Header';
declare type HeaderShellProps = {
children: ReactNode;
className?: string;
};
export declare const HeaderShell: FunctionComponent<HeaderShellProps & HeaderProps>;
export {};