export interface IConfig { pattern: string; ignore: string; repo: string; promote: boolean; summary: string; template: boolean | { variables: { [key: string]: any; }; }; } export declare type UserConfig = IConfig; export declare function load(configFile: string): { pattern: string; ignore: string; repo: string; promote: boolean; summary: string; template: boolean | { variables: { [key: string]: any; }; }; };