export interface Process {
    env: {
        NODE_ENV: 'production' | 'debug';
    };
}
export declare function getProcess(): Process;
