import type { ComponentWithDocGenInfo, Prop } from './types'; declare type PropsProps = { /** Component with documentation info for which to list the props details. */ of: ComponentWithDocGenInfo; filter: (prop: Prop) => boolean; }; /** Used for listing the props details of a React component. */ export declare const Props: ({ of, filter }: PropsProps) => JSX.Element | "Loading..."; export {};