import type { LinkableDefinition } from "@voyant-travel/core"; /** * Properties and facilities exposed as linkable entities so other modules can * associate to them via `defineLink` (e.g. a room block -> its property). See * RFC voyant#1489. */ export declare const propertyLinkable: LinkableDefinition; export declare const facilityLinkable: LinkableDefinition; /** Function spaces (meeting/event sub-spaces) - linkable so a MICE session can target one. */ export declare const functionSpaceLinkable: LinkableDefinition; /** Space blocks - held function-space inventory; linkable to a MICE program. */ export declare const spaceBlockLinkable: LinkableDefinition; export declare const placesLinkable: { property: LinkableDefinition; facility: LinkableDefinition; functionSpace: LinkableDefinition; spaceBlock: LinkableDefinition; };