declare const outputDeparturesDirectionsJsonSchema: {
    type: string;
    properties: {
        departure_stop_id: {
            type: string;
        };
        next_stop_id_regexp: {
            type: string;
        };
        direction: {
            type: string;
        };
        rule_order: {
            type: string;
        };
    };
};
export { outputDeparturesDirectionsJsonSchema };
