import { type ParsedConfigDocument } from "./schema.js"; export declare const CONFIG_FILENAME = "hookwarden.config.yaml"; export declare class ConfigError extends Error { constructor(message: string); } export declare function findConfigFile(startDir: string): Promise; export declare function loadConfigFile(filePath: string): Promise; export declare function loadConfigFromCwd(opts: { readonly cwd: string; readonly explicitPath?: string; readonly disabled: boolean; }): Promise<{ readonly path: string | null; readonly config: ParsedConfigDocument | null; }>; //# sourceMappingURL=loader.d.ts.map