import type { FC, HTMLAttributes } from 'react'; import type { HttpMethodName } from '../HttpMethod'; interface ParameterPathMethodProps extends HTMLAttributes { method: HttpMethodName; } export declare const ParameterPathMethod: FC; export {};