import * as React from 'react'; export declare function createReactComponent(elementName: string): { new (props: any): { ref: React.RefObject; readonly _customPropsList: string[]; readonly nativeElement: Promise; componentDidMount(): void; componentDidUpdate(prevProps: any): void; render(): React.DOMElement, BaseComponent>; _propIsReservedReactProp(prop: any): boolean; _propIsFunction(prop: any): boolean; _createCustomElementEvent(prop: any): void; _updateCustomElementProperty(prop: any): void; context: any; setState(state: {} | ((prevState: Readonly<{}>, props: Readonly> & React.DOMAttributes>>) => {} | Pick<{}, K> | null) | Pick<{}, K> | null, callback?: (() => void) | undefined): void; forceUpdate(callback?: (() => void) | undefined): void; readonly props: Readonly> & React.DOMAttributes>> & Readonly<{ children?: React.ReactNode; }>; state: Readonly<{}>; refs: { [key: string]: React.ReactInstance; }; shouldComponentUpdate?(nextProps: Readonly> & React.DOMAttributes>>, nextState: Readonly<{}>, nextContext: any): boolean; componentWillUnmount?(): void; componentDidCatch?(error: Error, errorInfo: React.ErrorInfo): void; getSnapshotBeforeUpdate?(prevProps: Readonly> & React.DOMAttributes>>, prevState: Readonly<{}>): any; componentWillMount?(): void; UNSAFE_componentWillMount?(): void; componentWillReceiveProps?(nextProps: Readonly> & React.DOMAttributes>>, nextContext: any): void; UNSAFE_componentWillReceiveProps?(nextProps: Readonly> & React.DOMAttributes>>, nextContext: any): void; componentWillUpdate?(nextProps: Readonly> & React.DOMAttributes>>, nextState: Readonly<{}>, nextContext: any): void; UNSAFE_componentWillUpdate?(nextProps: Readonly> & React.DOMAttributes>>, nextState: Readonly<{}>, nextContext: any): void; }; contextType?: React.Context | undefined; };