import type { Hash } from '@ariestools/sdk'; import type { ContextExProviderProps } from '@ariestools/sdk-react/shared'; import type { ArchivistInstance } from '@xyo-network/sdk'; import type { PropsWithChildren } from 'react'; import React from 'react'; import type { NestedBoundWitnesses } from '../../contexts/index.js'; /** Props for {@link HashSelectionHistoryProvider}. */ export interface HashSelectionHistoryProviderProps extends PropsWithChildren, ContextExProviderProps { archivist?: ArchivistInstance | null; defaultHashSelectionHistory?: Hash[]; defaultNestedBoundWitnesses?: NestedBoundWitnesses; } /** Provides nested bound witness selection history backed by an archivist. */ export declare const HashSelectionHistoryProvider: React.FC; //# sourceMappingURL=Provider.d.ts.map