import { ComponentID } from '@teambit/component-id'; import { ComponentIssue } from './component-issue'; export type RelativeComponentsAuthoredEntry = { importSource: string; componentId: ComponentID; relativePath: { sourceRelativePath: string; importSpecifiers?: any[]; }; }; export declare class RelativeComponentsAuthored extends ComponentIssue { description: string; solution: string; data: { [fileName: string]: RelativeComponentsAuthoredEntry[]; }; isCacheBlocker: boolean; formatDataFunction: typeof relativeComponentsAuthoredIssuesToString; serialize(): string; deserialize(dataStr: string): any; } declare function relativeComponentsAuthoredIssuesToString(relativeEntries: RelativeComponentsAuthoredEntry[]): string; export {};