import type { Payload, Sequence, WithStorageMeta } from '@xyo-network/sdk'; /** Holds the accumulating payload list, cursor, and update helpers. */ export declare const useTotalPayloads: () => { cursor: Sequence | undefined; updateCursorFromLastItem: () => void; totalPayloads: WithStorageMeta[] | undefined; totalPayloadsCount: number; updateCursor: (newCursor?: Sequence) => void; updateTotalPayloads: (additionalPayloads?: WithStorageMeta[]) => true; updateTotalPayloadsCount: import("react").Dispatch>; }; //# sourceMappingURL=useTotalPayloads.d.ts.map