import { Procedure } from "../../internal"; import { Scope } from "../../types"; import { ProcedureAuthorization, ScopeClaimProof } from "../../types/internal"; export interface AddInvestorUniquenessClaimParams { scope: Scope; cddId: string; proof: string | ScopeClaimProof; scopeId: string; expiry?: Date; } /** * @hidden */ export declare function prepareAddInvestorUniquenessClaim(this: Procedure, args: AddInvestorUniquenessClaimParams): Promise; /** * @hidden */ export declare function getAuthorization(this: Procedure, { proof }: AddInvestorUniquenessClaimParams): ProcedureAuthorization; /** * @hidden */ export declare const addInvestorUniquenessClaim: () => Procedure; //# sourceMappingURL=addInvestorUniquenessClaim.d.ts.map