export declare const createCursor: (lastEvaluatedKey: Record<string, any> | string) => string;
export declare const parseCursor: (cursor: string) => any;
export declare const createId: ({ prefix }?: {
    prefix?: string | undefined;
}) => Promise<string>;
export declare const createDynamoDbKey: (input: {
    keyName: string;
    keyValue: any;
}) => {
    [x: string]: any;
};
