export interface ConfigTemplateType { name: string; regex: string; pattern: string; pre_type?: string; post_type?: string; pre_scope?: string; post_scope?: string; pre_description?: string; post_description?: string; pre_body?: string; post_body?: string; pre_issue?: string; post_issue?: string; pre_issue2?: string; post_issue2?: string; pre_issue3?: string; post_issue3?: string; } export interface ConfigType { $schema: "https://www.4s1.de/conventional-commit-creator/schema.json"; version: number; templates: ConfigTemplateType[]; } export declare function loadConfig(): ConfigType; //# sourceMappingURL=config.d.ts.map