import { CancelReason } from "../../cancel-reasons/entities/cancel-reasons.entity";
import { TeamMember } from "src/modules/team-member/entities/team_member.entity";
import { Customer } from "src/modules/customers/entities/customer.entity";
import { Trip } from "./trip.entity";
export declare class TripCancellation {
    id: number;
    trip_id: number;
    canceled_by: string;
    canceled_by_id: number;
    reason_id: number;
    other_input: string;
    created_at: Date;
    updated_at: Date;
    reason: CancelReason | null;
    trip: Trip | null;
    cancel_member: TeamMember | null;
    cancel_customer: Customer | null;
}
