export interface IDescriptorOutputDto {
    id: number;
    state: string;
    registration_number: number;
    registration_number_index: number;
    license_plate: string | null;
    operator: string;
    manufacturer: string;
    type: string;
    traction: string;
    gtfs_route_type: number;
    is_air_conditioned: boolean;
    is_wheelchair_accessible: boolean | null;
    has_usb_chargers: boolean;
    paint: string | null;
    thumbnail_url: string | null;
    photo_url: string | null;
}
export interface IDescriptorAuditDto {
    updated_at?: Date;
}
