import { SectionLayout } from '../../components/Section'; import { SchemaNodeData } from '../../types/schema'; interface SchemasProps { schemas: Record; selectedKey?: string | null; /** The precisely-matched nested node search navigated to, if any — see Layout.tsx. */ focusTarget?: { tokens: string[]; id: string; } | null; layout?: SectionLayout; } export default function Schemas({ schemas, selectedKey, focusTarget, layout }: SchemasProps): import("react").JSX.Element; export {};