export interface ConfigProps { mode?: 'development' | 'production' | 'test'; root?: string; } export declare const config: ({ mode, root }?: ConfigProps) => Record;