import * as React from 'react';
import { RouteItem } from '../../routes';
interface IProps {
    appLogo: string;
    routes: RouteItem[];
    headerPrefixElements?: React.ReactNode;
    headerSuffixElements?: React.ReactNode;
    location?: any;
}
declare const ChildWindowLayout: React.FunctionComponent<IProps>;
export default ChildWindowLayout;
