import React, { CSSProperties } from 'react'; export declare const useComponentContext: () => { componentClassName?: string | undefined; componentStyle?: CSSProperties | undefined; }; interface ComponentProps { style?: CSSProperties | undefined; className?: string | undefined; categoryName?: string; name: string; children: React.JSX.Element | React.JSX.Element[]; defaultProps?: object; subComponents?: React.JSX.Element | React.JSX.Element[]; docURL?: string; previewImagePath?: string; } export declare const Component: React.FC; export {};