import { Asset, AuthorizationRequest, CustomPermissionGroup, Identity, KnownPermissionGroup, PostTransactionValue, Procedure } from "../../internal"; import { TransactionPermissions, TxGroup } from "../../types"; import { ProcedureAuthorization } from "../../types/internal"; export interface InviteExternalAgentParams { target: string | Identity; permissions: KnownPermissionGroup | CustomPermissionGroup | { transactions: TransactionPermissions; } | { transactionGroups: TxGroup[]; }; /** * date at which the authorization request for invitation expires (optional) * * @note if expiry date is not set, the invitation will never expire */ expiry?: Date; } /** * @hidden */ export declare type Params = InviteExternalAgentParams & { ticker: string; }; /** * @hidden */ export interface Storage { asset: Asset; } /** * @hidden */ export declare function prepareInviteExternalAgent(this: Procedure, args: Params): Promise>; /** * @hidden */ export declare function getAuthorization(this: Procedure): ProcedureAuthorization; /** * @hidden */ export declare function prepareStorage(this: Procedure, { ticker }: Params): Storage; /** * @hidden */ export declare const inviteExternalAgent: () => Procedure; //# sourceMappingURL=inviteExternalAgent.d.ts.map