import { Data, Encodeable, EncodeContext } from '@simonbackx/simple-encoding'; import { File } from './File.js'; export declare class Resolution implements Encodeable { file: File; width: number; height: number; constructor(data: { file: File; width: number; height: number; }); static decode(data: Data): Resolution; encode(context: EncodeContext): { file: { id: string; server: string; path: string; size: number; name: string | null; isPrivate: boolean; signedUrl: string | undefined; signature: string | null | undefined; contentType: string | undefined; }; width: number; height: number; }; } //# sourceMappingURL=Resolution.d.ts.map