import type { Promisable } from '@ariestools/sdk'; import type { Payload } from '@xyo-network/sdk'; /** Persistence interface for reading and writing form group payload state. */ export interface FormGroupStorage { clear: () => Promisable; get: () => Promisable; insert: (state: TValue) => Promisable; } //# sourceMappingURL=FormGroupStorage.d.ts.map