import { IdSide } from "../Enums";
import type { ImageInfoJSON } from "../SerializedTypes";
export declare class IdImages {
    private json;
    get face(): string | null;
    get frame(): string | null;
    private static fromJSON;
    getFrame(side: IdSide): string | null;
    getCroppedDocument(side: IdSide): string | null;
    toJSONObject(): ImageInfoJSON;
}
export interface PrivateIdImages {
    fromJSON(json: ImageInfoJSON | null): IdImages;
}
