import { Direction } from '../EntityRelationsGraph'; export type Props = { value: Direction; onChange: (value: Direction) => void; }; export declare const DirectionFilter: ({ value, onChange }: Props) => import("react/jsx-runtime").JSX.Element;