/// import path from 'path'; export interface TypescriptSourceFileId { getIdString(): string; generateFilePath(): path.ParsedPath; } export declare class LuvioTypescriptSourceFileId implements TypescriptSourceFileId { readonly type: 'adapters' | 'resources' | 'types'; readonly identifier: string; constructor(type: 'adapters' | 'resources' | 'types', identifier: string); getIdString(): string; generateFilePath(): path.ParsedPath; }