import { type FC } from 'react'; interface PropType { name: string; raw?: string; } interface PropValue { tsType?: PropType; defaultValue?: { value: string; }; required?: boolean; description?: string; } interface DocGenInfo { props?: Record; } interface ComponentWithDocGenInfo { __docgenInfo: DocGenInfo; } declare const Props: FC<{ of: ComponentWithDocGenInfo; /** Prop names to hide from the table (e.g. deprecated props) */ omit?: string[]; }>; export default Props; //# sourceMappingURL=props-table.d.ts.map