import { AuthToken, KeyShard } from "../../types";
export declare const saveShards: (address: string, cid: string, auth_token: AuthToken, keyShards: KeyShard[], shareTo?: string[]) => Promise<{
    isSuccess: boolean;
    error: any;
} | {
    isSuccess: any;
    error: null;
}>;
