import { CisStopGroupRepository } from "../../../ropid-gtfs/data-access/CisStopGroupRepository";
export declare class StopFacade {
    private cisStopGroupsRepository;
    constructor(cisStopGroupsRepository: CisStopGroupRepository);
    /**
     * Retrieves ASW node ID for given CIS ID and then returns GTFS stop IDs for this ASW node
     */
    getStopIdsForTransferBoards(cisId: string): Promise<string[]>;
}
