import { AgencyDto } from "./models/AgencyDto";
import { CalendarDatesDto } from "./models/CalendarDatesDto";
import { CalendarDto } from "./models/CalendarDto";
import { RouteDto } from "./models/RouteDto";
import { RouteSubAgencyDto } from "./models/RouteSubAgencyDto";
import { ShapeDto } from "./models/ShapeDto";
import { StopDto } from "./models/StopDto";
import { StopTimesDto } from "./models/StopTimesDto";
import { TripDto } from "./models/TripDto";
export declare const RopidGTFSSchedule: {
    agency: {
        name: string;
        pgTableName: string;
        /**
         * @deprecated The property should not be used
         */
        outputSequelizeAttributes: import("sequelize/types/model").ModelAttributes<AgencyDto, any>;
    };
    calendar: {
        name: string;
        pgTableName: string;
        /**
         * @deprecated The property should not be used
         */
        outputSequelizeAttributes: import("sequelize/types/model").ModelAttributes<CalendarDto, any>;
    };
    calendar_dates: {
        name: string;
        pgTableName: string;
        /**
         * @deprecated The property should not be used
         */
        outputSequelizeAttributes: import("sequelize/types/model").ModelAttributes<CalendarDatesDto, any>;
    };
    shapes: {
        name: string;
        pgTableName: string;
        /**
         * @deprecated The property should not be used
         */
        outputSequelizeAttributes: import("sequelize/types/model").ModelAttributes<ShapeDto, any>;
    };
    stop_times: {
        name: string;
        pgTableName: string;
        /**
         * @deprecated The property should not be used
         */
        outputSequelizeAttributes: import("sequelize/types/model").ModelAttributes<StopTimesDto, any>;
    };
    stops: {
        name: string;
        pgTableName: string;
        /**
         * @deprecated The property should not be used
         */
        outputSequelizeAttributes: import("sequelize/types/model").ModelAttributes<StopDto, any>;
    };
    routes: {
        name: string;
        pgTableName: string;
        /**
         * @deprecated The property should not be used
         */
        outputSequelizeAttributes: import("sequelize/types/model").ModelAttributes<RouteDto, any>;
    };
    route_sub_agencies: {
        name: string;
        pgTableName: string;
        /**
         * @deprecated The property should not be used
         */
        outputSequelizeAttributes: import("sequelize/types/model").ModelAttributes<RouteSubAgencyDto, any>;
    };
    trips: {
        name: string;
        pgTableName: string;
        /**
         * @deprecated The property should not be used
         */
        outputSequelizeAttributes: import("sequelize/types/model").ModelAttributes<TripDto, any>;
    };
};
export type ScheduleModelName = keyof typeof RopidGTFSSchedule;
/**
 * @deprecated The type should not be used
 */
export type RopidGTFSPgProp = keyof Pick<typeof RopidGTFSSchedule, "stop_times">;
