import * as ReactNative from 'react-native'; import { NamableConstructor } from './util'; type SwitchConstructor = NamableConstructor & typeof ReactNative.Switch; /** * **Do not use directly.** * * This method is used by the instrumentor to capture Switch change events. This method is called * on the publicly exposed `Switch` component from the React Native library. * * @param SwitchComponent A `Switch` component. * @returns An instrumented HOC wrapping `SwitchComponent`. */ export declare const withHeapSwitchAutocapture: (SwitchComponent: SwitchConstructor) => SwitchConstructor; export {};