export type Annotation = { type: string; description?: string; }; export declare class AnnotationExtractor { extractQaseIds(annotations: Annotation[]): number[]; extractProjectMapping(annotations: Annotation[]): Record | null; extractSuite(annotations: Annotation[]): string[]; }