/** * Name/value pair for additional facility information */ export declare class FacilityProperty { /** * The value of the property */ value: string; /** * The name of the property */ name: string; }