import { type AxiosRequestConfig, type AxiosResponse } from 'axios';
import { type QueryLanguage } from '../../types/common.type';
import { type Station } from '../../types/station.type';
export declare function getStationList(language?: QueryLanguage, axiosConfig?: AxiosRequestConfig<any>): Promise<AxiosResponse<Station[]>>;
