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