import { SectionLayout } from '../../components/Section'; import { OpenAPIPathItemData, OpenAPISecuritySchemeData } from '../../types/openapi'; interface PathsProps { paths: Record; security?: Array>; securitySchemes?: Record; selectedKey?: string | null; onSelectKey?: (key: string | null) => void; focusSection?: string | null; /** Heading for the identifier column. "Webhook" for OpenAPI 3.1 webhooks, whose keys are event names rather than URL paths. */ columnLabel?: string; /** Prefix for this list's DOM anchor ids, keeping webhook anchors distinct from endpoint ones for search and sidebar navigation. */ idPrefix?: string; layout?: SectionLayout; } export default function Paths({ paths, security, securitySchemes, selectedKey, onSelectKey, columnLabel, idPrefix, layout, }: PathsProps): import("react").JSX.Element | null; export {};