import type { AccountInstance, ModuleIdentifier, WitnessInstance } from '@xyo-network/sdk'; import type { PropsWithChildren } from 'react'; import React from 'react'; /** Props for {@link SentinelProvider}. */ export interface SentinelProviderProps { /** Account used by the sentinel for signing */ account: AccountInstance; /** @deprecated - sentinel no longer uses archive but relies on an archivist */ archive?: string; archivist?: string; ids?: ModuleIdentifier[]; name?: string; required?: boolean; witnesses?: WitnessInstance[]; } /** Provides a memory sentinel and tracks report progress for descendants. */ export declare const SentinelProvider: React.FC>; //# sourceMappingURL=Provider.d.ts.map