export interface EpdConfig {
    packageManager?: 'npm' | 'yarn' | 'pnpm';
    autoResolve?: boolean;
    interactive?: boolean;
    ignorePackages?: string[];
    preferredVersions?: Record<string, string>;
    registryUrl?: string;
    timeout?: number;
    retries?: number;
}
export declare function loadConfig(cwd?: string): Promise<EpdConfig>;
