import BigNumber from 'bignumber.js'; import { Procedure } from "../../internal"; import { PortfolioLike } from "../../types"; import { ProcedureAuthorization } from "../../types/internal"; export interface ControllerTransferParams { /** * portfolio (or portfolio ID) from which Assets will be transferred */ originPortfolio: PortfolioLike; /** * amount of Asset tokens to transfer */ amount: BigNumber; } /** * @hidden */ export declare type Params = { ticker: string; } & ControllerTransferParams; /** * @hidden */ export declare function prepareControllerTransfer(this: Procedure, args: Params): Promise; /** * @hidden */ export declare function getAuthorization(this: Procedure, { ticker }: Params): Promise; /** * @hidden */ export declare const controllerTransfer: () => Procedure; //# sourceMappingURL=controllerTransfer.d.ts.map