type PropItem = { description?: string; type?: string; default?: string; required?: boolean; }; type PropRecord = Record; export declare function createPropsTable(propRecord: PropRecord): () => import("react/jsx-runtime").JSX.Element; export {};