import type { RuleConfigCondition, RuleConfigSeverity } from '@commitlint/types'; export declare type RuleEntry = [string, Readonly<[RuleConfigSeverity.Disabled]>] | [string, Readonly<[RuleConfigSeverity, RuleConfigCondition]>] | [string, Readonly<[RuleConfigSeverity, RuleConfigCondition, unknown]>]; export declare type InputSetting = { description?: string; enumerables?: Record; multiline?: boolean; header?: { length?: number; }; }; export declare type ResultPart = 'type' | 'scope' | 'subject' | 'body' | 'footer'; export declare type Result = Partial>; //# sourceMappingURL=types.d.ts.map