export interface PartitionKeyParams {
    tenant: string;
    locale: string;
    id: string;
}
export interface GSIPartitionKeyParams {
    tenant: string;
    locale: string;
}
export interface GSISortKeyParams {
    blockCategory: string;
    id: string;
}
export declare const createPartitionKey: (params: PartitionKeyParams) => string;
export declare const createGSIPartitionKey: (params: GSIPartitionKeyParams) => string;
export declare const createGSISortKey: (params: GSISortKeyParams) => string;
export interface SortKeyParams {
    id: string;
}
export declare const createSortKey: () => string;
