import type { ArchivistInstance, NextOptions } from '@xyo-network/sdk'; import type { PropsWithChildren } from 'react'; import React from 'react'; /** Props for {@link PayloadListProvider}. */ export interface PayloadListProviderProps extends PropsWithChildren { archivist?: ArchivistInstance; nextOptions?: NextOptions; } /** * Provides paginated payload list state from an archivist for descendants. * NOTE: Be sure your nextOptions have a higher limit then the pageSize of the list/table */ export declare const PayloadListProvider: React.FC; //# sourceMappingURL=Provider.d.ts.map