import { KeyShard } from "../../types";
export declare const recoverKey: (keyShards: KeyShard[]) => Promise<{
    masterKey: string;
    error: null;
} | {
    masterKey: null;
    error: string;
}>;
