interface Props { bindings: Record; expand?: boolean; protocol: string; /** Forces this block open — e.g. when search navigates directly to it. */ focused?: boolean; } export default function Bindings({ bindings, expand, protocol, focused }: Props): import("react").JSX.Element | null; export {};