import { FC, PropsWithChildren } from 'react'; interface IComponentProps { compName: string; theme?: string; className?: string; } export declare const Component: FC>; export {};