import { Bytes, FeedIndex, Reference } from '@ethersphere/bee-js';
interface FeedUpdateHeaders {
    feedIndex: FeedIndex;
    feedIndexNext?: FeedIndex;
}
export interface FeedPayloadResult extends FeedUpdateHeaders {
    payload: Bytes;
}
export interface FeedReferenceResult extends FeedUpdateHeaders {
    reference: Reference;
}
export interface FeedData {
    data: unknown;
    nextIndex: bigint;
}
export {};
//# sourceMappingURL=types.d.ts.map