import { IResponse, IContext } from '../../types'; import { ISnapshot } from '..'; export interface IGetSnapshotApiRequest { snapshot_id: string | number; } export interface IGetSnapshotApiResponse { snapshot: ISnapshot; } export type GetSnapshotResponse = IResponse; export declare const getSnapshot: ({ httpClient, }: IContext) => ({ snapshot_id, }: IGetSnapshotApiRequest) => Promise>;