import { Options } from 'yargs'; export declare type Params = { id: string; minLedgerVersion?: number; maxLedgerVersion?: number; }; export declare const command = "find [minLedgerVersion] [maxLedgerVersion]"; export declare const describe = "Find a transaction on the XRP ledger"; export declare const builder: { [key: string]: Options; }; export declare function handler({ id, minLedgerVersion, maxLedgerVersion }: Params): Promise;