import { BaseEntity } from '../database/base.entity';
import { DestinationEntity } from './destination.entity';
export declare class SupplierEntity extends BaseEntity {
    destination: DestinationEntity;
    destination_id: string;
    supplier_types: string[];
    name: string;
    contact_person: string;
    phone: string;
    email: string | null;
    alt_phone: string | null;
    photo_url: string | null;
    address: string | null;
    linked_transport_services: string[] | null;
    transport_operational_area: string | null;
    transport_operational_hours: string | null;
    fleet_count: number | null;
    transport_notes: string | null;
    linked_activities: string[] | null;
    activity_operational_area: string | null;
    activity_operational_hours: string | null;
    capacity: number | null;
    pricing_type: string | null;
    activity_notes: string | null;
    operational_area: string | null;
    operational_hours: string | null;
    notes: string | null;
    is_active: boolean;
}
