export declare const shardKey: (key: string, threshold?: number, keyCount?: number) => Promise<{
    isShardable: boolean;
    keyShards: {
        key: string;
        index: any;
    }[];
}>;
