import { AuthorizationRequest, Procedure } from '../../internal'; import { TransferTickerOwnershipParams } from '../../types'; import { ExtrinsicParams, ProcedureAuthorization, TransactionSpec } from '../../types/internal'; /** * @hidden */ export type Params = { ticker: string; } & TransferTickerOwnershipParams; /** * @hidden */ export declare function prepareTransferTickerOwnership(this: Procedure, args: Params): Promise>>; /** * @hidden */ export declare function getAuthorization(this: Procedure, { ticker }: Params): ProcedureAuthorization; /** * @hidden */ export declare const transferTickerOwnership: () => Procedure; //# sourceMappingURL=transferTickerOwnership.d.ts.map