import { Joi } from '../helpers'; import type { ISnapshotMeta } from './snapshotMeta'; export interface ISaveSnapshotParams { meta: ISnapshotMeta; base64Image: string; } export declare const saveSnapshotParamsSchema: Joi.ObjectSchema;