export interface IParams { key: string | number | symbol; } export declare const createPartitionKey: () => string; export declare const createSortKey: ({ key }: IParams) => string; export declare const createType: () => string;