import { UserArkosConfig } from "../define-config"; export declare function isUsingAuthentication(): "static" | "dynamic" | undefined; export declare function isAuthenticationEnabled(): boolean | undefined; /** * Gives access to the underlying current configurations being used by **Arkos** by default and also loaded through `arkos.config.{ts|js}` * * @returns {ArkosConfig} */ export declare function getArkosConfig(): UserArkosConfig; /** * Returns true if application is being run through `arkos start` after `arkos build` * * @since 1.5.16-beta */ export declare function isProduction(): boolean; export declare function validateArkosConfig(): void;