export type CursorInput = string | number | (string | number)[] | null; export type CursorOutput = string | null; export declare const encodeCursor: (cursor?: CursorInput) => CursorOutput; export declare const decodeCursor: (cursor?: CursorOutput) => CursorInput;