import React from 'react';
import { WithGuiTheme } from '../../../../assets/theme';
import { GuiLayoutHeaderProps } from './GuiLayoutHeader.type';
declare type WithStyled = GuiLayoutHeaderProps & WithGuiTheme;
declare const styled: (component: React.FC<WithStyled>) => import("@emotion/styled").StyledComponent<GuiLayoutHeaderProps & WithGuiTheme & {
    children?: React.ReactNode;
} & {
    theme?: import("@emotion/react").Theme;
}, {}, {}>;
export default styled;
