interface PropsType { location?: any; onRouteToHome?: () => void; onRouteToLogin?: () => void; onRouteToRegister?: () => void; onRouteToProfile?: () => void; onRouteToManager?: () => void; children?: any; } export declare const Layout: ({ location, onRouteToHome, onRouteToLogin, onRouteToRegister, onRouteToProfile, onRouteToManager, children }: PropsType) => JSX.Element; export {};