import * as yup from 'yup'; import { PriorityLevel } from '../../../memPool/feeEstimator'; export type EstimateFeeRateRequest = { priority?: PriorityLevel; } | undefined; export type EstimateFeeRateResponse = { rate: string; }; export declare const EstimateFeeRateRequestSchema: yup.ObjectSchema; export declare const EstimateFeeRateResponseSchema: yup.ObjectSchema; //# sourceMappingURL=estimateFeeRate.d.ts.map