export interface EnvVarLike { key: string; value: string; } export type ConfigStructure = Record>; export type TransformedConfig = Record>; export declare function toCamelCase(str: string): string; export declare function getPrefix(key: string): string | null; export declare function buildConfigStructureFromEnvKeys(keys: string[]): ConfigStructure; export declare function transformEnvVars(vars: readonly EnvVarLike[]): TransformedConfig;