import * as yup from 'yup'; export type MinMax = { min?: number; max?: number; }; export type GetMempoolTransactionsRequest = { limit?: number; feeRate?: MinMax; fee?: MinMax; expiration?: MinMax; expiresIn?: MinMax; position?: MinMax; }; export type GetMempoolTransactionResponse = { serializedTransaction: string; position: number; expiresIn: number; }; export declare const MempoolTransactionsRequestSchema: yup.ObjectSchema; export declare const MempoolTransactionResponseSchema: yup.ObjectSchema; //# sourceMappingURL=getTransactions.d.ts.map