import type { AstroConfig } from '../types/public/index.js'; interface EnvLoaderOptions { mode: string; config: AstroConfig; useStatic: boolean; } export declare const createEnvLoader: (options: EnvLoaderOptions) => { get: () => Record; getPrivateEnv: () => Record; }; export type EnvLoader = ReturnType; export {};