export declare type LabelConfig = { description?: string; color: string; siblings?: Sibling[]; } | string; export declare type Sibling = string; export interface RepositoryConfig { strict?: boolean; labels: { [name: string]: LabelConfig; }; }