import type { TurboModule } from 'react-native';
export interface Spec extends TurboModule {
    /**
     * Requests the native module to attempt OTP autofill
     */
    requestOtpAutofill(): void;
    /**
     * Stops the SMS listener and cleans up resources
     */
    stopOtpAutofill(): void;
}
declare const NativeModule: Spec;
export default NativeModule;
//# sourceMappingURL=NativeRnSmsOtpAutofill.d.ts.map