import { RahaApiError } from "../.."; export declare const ERROR_CODE = "trust.alreadyTrusted"; export interface AlreadyTrustedErrorBody { errorCode: typeof ERROR_CODE; memberId: string; } /** * Member trusts another member that they already trust. * * TODO: should this be an idempotent operation/this not be an error? */ export declare class AlreadyTrustedError extends RahaApiError { readonly errorCode: typeof ERROR_CODE; constructor(memberId: string); } //# sourceMappingURL=AlreadyTrustedError.d.ts.map