import type { Hash } from '@ariestools/sdk'; import type { ArchivistInstance, ArchivistModuleInstance } from '@xyo-network/sdk'; import type { PropsWithChildren } from 'react'; import React from 'react'; /** Props for {@link PayloadProvider}. */ export interface PayloadProviderProps { /** @deprecated - no longer used */ archive?: string; /** @deprecated - use archivist prop instead */ archivePayloadWrapper?: ArchivistModuleInstance; archivist?: ArchivistInstance; cachePayload?: boolean; hash?: Hash; required?: boolean; } /** Loads a payload by hash from an archivist and provides it to descendants. */ export declare const PayloadProvider: React.FC>; //# sourceMappingURL=Provider.d.ts.map