export type DecryptShardParams = { waypointToken: string; recoveryPassword: string; encryptedData: string; }; export declare const decryptShard: (params: DecryptShardParams) => Promise;