import { default as React } from 'react'; interface PropDefinition { type: string; default?: unknown; required?: boolean; description: string; } interface PropsTableProps { props: Record; className?: string; } export declare const PropsTable: React.FC; export {};