import { SubdistrictType } from '../Geolocation';
import { BaseExpedition } from './Base';
export declare class Wahana extends BaseExpedition {
    protected subdistrict?: SubdistrictType;
    constructor();
    querySubdistrictDestinations(): Promise<SubdistrictType[]>;
    setSubdistrict(subdistrict: SubdistrictType): void;
    protected buildParams(): any;
}
