import React from 'react'; import { GestureDetectorType } from './detectors'; import type { NativeWrapperProperties, WrapperSpecificProperties } from './types/NativeWrapperType'; export default function createNativeWrapper(Component: React.ComponentType, config?: Readonly, keyof WrapperSpecificProperties>>, detectorType?: GestureDetectorType): { (props: TProps & NativeWrapperProperties): React.JSX.Element; displayName: any; }; //# sourceMappingURL=createNativeWrapper.d.ts.map