import * as yup from 'yup'; export type GetMempoolStatusRequest = undefined | { stream?: boolean; }; export type GetMempoolStatusResponse = { size: number; sizeBytes: number; maxSizeBytes: number; evictions: number; headSequence: number; recentlyEvictedCache: { size: number; maxSize: number; }; }; export declare const GetMempoolStatusRequestSchema: yup.ObjectSchema; export declare const GetMempoolStatusResponseSchema: yup.ObjectSchema; //# sourceMappingURL=getStatus.d.ts.map