export interface PartitionKeyParams {
    id: string;
    tenant: string;
    locale: string;
}
export declare const createPartitionKey: (params: PartitionKeyParams) => string;
export interface SortKeyParams {
    version: number;
}
export declare const createRevisionSortKey: (params: SortKeyParams) => string;
export declare const createLatestSortKey: () => string;
export declare const createPublishedSortKey: () => string;
