import React from 'openinula';
export interface BaseComponentProps {
    id?: string | number;
}
type ComponentProps = BaseComponentProps & {
    updateId?: number;
    componentId?: number;
};
export declare const createComponent: <T extends ComponentProps>(componentName: string, specName: string, supportedEvents?: Record<string, string> | null, isSingle?: boolean) => React.FC<T>;
export {};
