import type { CookieSerializeOptions } from "@fastify/cookie";
declare const DEV: boolean;
declare const TEST_ENV: boolean;
declare let PUBLIC_KEY: string;
declare let PRIVATE_KEY: string;
export declare const SUPER_MODE: boolean;
export declare const SCRIPTS_ENABLED: boolean;
export declare const config: {
    DEV: boolean;
    DB_URL: string;
    DB_NAME: string;
    CLIENT_URL: string;
    GRAPHQL_PORT: number;
    ROOT_URL: string;
    DOMAIN: string;
    EMAIL_SERVICE_URL: string;
    EMAIL_CLIENT_ID: string;
    EMAIL_CLIENT_KEY: string;
    STRIPE_KEY: string;
    STRIPE_WH_SECRET: string;
    SUPER_MODE: boolean;
};
declare let cookieConfigs: CookieSerializeOptions;
export declare const ADMIN_PASSWORD: string;
export declare const SERVER_SALT: string;
export { cookieConfigs, DEV, TEST_ENV, PRIVATE_KEY, PUBLIC_KEY };
