import { type AxiosRequestConfig, type AxiosResponse } from 'axios';
import { type QueryLanguage } from '../../types/common.type';
import { type StationInfoRequestBody } from '../../types/requestBody.type';
import { type StationInfo } from '../../types/stationInfo.type';
export declare function getStationInfo(query: Omit<StationInfoRequestBody, 'type' | 'minCount' | 'maxCount'>, language?: QueryLanguage, axiosConfig?: AxiosRequestConfig<any>): Promise<AxiosResponse<StationInfo>>;
