import { Transformation } from './transformation'; export declare class FileID { readonly id: string; readonly transformation?: Readonly; readonly filename?: string; constructor(id?: string, transformation?: Readonly, filename?: string); get isOriginal(): boolean; original(): FileID; toURLPath(): string; toFilePath(): string; static fromParams(id: string, transformation?: string, filename?: string): FileID; } //# sourceMappingURL=fileID.d.ts.map