declare namespace PQI {
    namespace Types {
        interface Facility {
            Name: string;
            Voltage: string;
            UtilitySupplyVoltage: string;
            Path: string;
            Address: string;
        }
        interface Equipment {
            Facility: string;
            Area: string;
            SectionTitle: string;
            SectionRank: number;
            ComponentModel: string;
            Manufacturer: string;
            Series: string;
            ComponentType: string;
        }
        interface Address {
            Path: string;
            Company: string;
            Facilities: string;
            AddressLine1: string;
            AdressLine2: string;
            City: string;
            StateOrProvince: string;
            PostalCode: string;
            Country: string;
            Primary: boolean;
        }
        interface Company {
            Addresses: string;
            Path: string;
            Type: string;
            Name: string;
            Industry: string;
        }
    }
    namespace Lists {
    }
}
export default PQI;
