import { Auth, Session } from '@genesislcap/foundation-comms'; import { FoundationRouterConfiguration } from '@genesislcap/foundation-ui'; import { Constructable } from '@genesislcap/web-core'; type RouterSettings = { public?: boolean; autoAuth?: boolean; }; /** * Base implementation of a routing used with the Login class * * @remarks * * Could be used when using the Login class as a standalone authentication method * with your app * * @internal */ export declare class MainRouterConfig extends FoundationRouterConfiguration { private auth; private session; constructor(auth: Auth, session: Session); configure(): void; construct(Type: Constructable): T; } export {}; //# sourceMappingURL=config.d.ts.map