import type { FC, HTMLAttributes } from 'react'; interface ParameterPathSegmentProps extends HTMLAttributes { children: string; variant?: 'default' | 'highlighted'; /** Show the Zap icon — only honored when `variant='highlighted'`. */ withZap?: boolean; /** Segment index in the path; used to derive a `segment-N` test id. */ index?: number; } export declare const ParameterPathSegment: FC; export {};