/** * Filter by the direction of the reference. Possible values: ``from`` and ``to``. * @export * @enum {string} */ export declare const FilterDirection: { readonly From: "from"; readonly To: "to"; }; export type FilterDirection = typeof FilterDirection[keyof typeof FilterDirection];