import type { ArchivistInstance, Payload } from '@xyo-network/sdk'; import type { FormGroupStorage } from './FormGroupStorage.js'; /** {@link FormGroupStorage} backed by an XYO archivist for get/insert/clear. */ export declare class ArchivistFormGroupStorage implements FormGroupStorage { private archivist; constructor(archivist: ArchivistInstance); clear(): Promise; get(): Promise; insert(value: Payload): Promise; } //# sourceMappingURL=ArchivistFormGroupStorage.d.ts.map