import { Options } from 'yargs'; export declare type Params = { amount: string; destination: string; password: string; allowCancelAfter: string; memo?: string; }; export declare const command = "create [memo]"; export declare const describe = "Create an escrow on the XRP ledger"; export declare const builder: { [key: string]: Options; }; export declare function handler({ amount, destination, password, allowCancelAfter, memo }: Params): Promise;