import type { IConfigRepository } from "../../domain/interface/config.repository.interface";
import type { IBranchLintConfig } from "../../domain/type/config.type";
/**
 * Cosmiconfig implementation of ConfigRepository
 */
export declare class CosmiconfigRepository implements IConfigRepository {
    /**
     * Get the branch configuration
     * @param appName The name of the application
     * @returns A promise that resolves to the branch configuration
     */
    getConfig(appName: string): Promise<IBranchLintConfig>;
}
