import { ConfigLoader } from '../types/config-loader.interface.js';
interface ProcessEnvLoaderOptions {
    /**
     * @default '__'
     */
    separator?: string;
    /**
     * @default true
     */
    jsonParse?: boolean;
}
export declare function processEnvLoader(loaderOptions?: ProcessEnvLoaderOptions): ConfigLoader;
export {};
