import { ModuleEndpointContext } from '../../types';
import { BaseEndpoint } from '../base_endpoint';
import { GetFeeTokenIDResponse, GetMinFeePerByteResponse, ModuleConfig } from './types';
export declare class FeeEndpoint extends BaseEndpoint {
    private _config;
    init(config: ModuleConfig): void;
    getFeeTokenID(_ctx: ModuleEndpointContext): Promise<GetFeeTokenIDResponse>;
    getMinFeePerByte(_ctx: ModuleEndpointContext): Promise<GetMinFeePerByteResponse>;
}
