/** * Describes the direction of data flow in the relationship. Possible values are: - ``to`` - Data flows from this resource to the related resource. - ``from`` - Data flows from the related resource to this resource. * @export * @enum {string} */ export declare const MetarefsDirection: { readonly From: "from"; readonly To: "to"; }; export type MetarefsDirection = typeof MetarefsDirection[keyof typeof MetarefsDirection];