export declare const configSchema: {
    $id: string;
    type: string;
    properties: {
        feeTokenID: {
            type: string;
            format: string;
        };
        minFeePerByte: {
            type: string;
            format: string;
        };
        maxBlockHeightZeroFeePerByte: {
            type: string;
            format: string;
        };
        feePoolAddress: {
            type: string;
            format: string;
        };
    };
    required: string[];
};
export declare const getMinFeePerByteResponseSchema: {
    $id: string;
    type: string;
    properties: {
        minFeePerByte: {
            type: string;
            format: string;
        };
    };
    required: string[];
};
export declare const getFeeTokenIDResponseSchema: {
    $id: string;
    type: string;
    properties: {
        feeTokenID: {
            type: string;
            format: string;
        };
    };
    required: string[];
};
