export type DefaultEntry = { field: string; value: string; }; /** * Builds a warning message listing all fields that were not explicitly provided — * whether they fell back to a hardcoded default or were auto-derived from the environment. * Returns null if every field was explicitly provided. */ export declare function buildDefaultsWarning(defaults: DefaultEntry[]): string | null;