export interface PartitionKeyParams {
    tenant: string;
    locale: string;
}
export declare const createPartitionKey: (params: PartitionKeyParams) => string;
export interface SortKeyParams {
    slug: string;
}
export declare const createSortKey: (params: SortKeyParams) => string;
