import type { FC, Ref } from 'react'; import type { HttpMethodName } from '../HttpMethod'; interface ParameterPathRowProps { ref?: Ref; method?: HttpMethodName; segments: string[]; encoding?: string; attack: boolean; forMeasurement: boolean; indices: number[] | null; isExpanded?: boolean; } export declare const ParameterPathRow: FC; export {};