///
import oneProfileSetup from "./oneProfileSetup";
import { getMe } from "./api/users";
import { ResponseError } from "./types/errors";
import { User, Profile } from "./types/users";
import { Office, LocationInfo } from "./types/location";
import { Assignments } from "./types/assignments";
declare const users: {
getMe: typeof getMe;
};
declare const pages: {
NotFound: {
bootstrap: import("single-spa").LifeCycleFn;
mount: import("single-spa").LifeCycleFn;
unmount: import("single-spa").LifeCycleFn;
update: import("single-spa").LifeCycleFn;
config: import("./oneProfileSetup").OneProfileSetupConfig;
};
DownTime: {
bootstrap: import("single-spa").LifeCycleFn;
mount: import("single-spa").LifeCycleFn;
unmount: import("single-spa").LifeCycleFn;
update: import("single-spa").LifeCycleFn;
config: import("./oneProfileSetup").OneProfileSetupConfig;
};
};
declare const components: {
DownTime: (props: any) => import("react/jsx-runtime").JSX.Element;
};
export { oneProfileSetup, users, pages, components };
export type { User, Profile, Office, LocationInfo, Assignments, ResponseError };