declare const departuresDirectionsJsonSchema: {
    type: string;
    items: {
        type: string;
        properties: {
            departure_stop_id: {
                type: string;
            };
            next_stop_id_regexp: {
                type: string;
            };
            direction: {
                type: string;
                enum: readonly ["top", "top-left", "left", "bottom-left", "bottom", "bottom-right", "right", "top-right"];
            };
            rule_order: {
                type: string;
            };
            create_batch_id: {
                type: string;
            };
            created_at: {
                type: string;
            };
            created_by: {
                type: string;
            };
            update_batch_id: {
                type: string;
            };
            updated_at: {
                type: string;
            };
            updated_by: {
                type: string;
            };
        };
    };
};
export { departuresDirectionsJsonSchema };
