import { NestThemeConfig } from '@ribajs/nest-theme'; export declare const app: { root: any; port: number; environment: string; }; export declare const theme: NestThemeConfig; export declare const session: { secret: string; resave: boolean; saveUninitialized: boolean; proxy: boolean; cookie: { maxAge: number; secure: boolean; sameSite: boolean | "none" | "lax" | "strict"; }; }; export declare const appConfig: (() => { root: any; port: number; environment: string; }) & import("@nestjs/config").ConfigFactoryKeyHost;