import { AutocaptureBindOptions } from '@contentsquare/react-native-autocapture'; import { LogChannel, LogLevel } from '@heap/heap-javascript-bridge-support'; declare const registerAutocapture: (isDefaultOrOptions?: AutocaptureBindOptions | boolean) => void; /** * Start the SDK and automatically register autocapture if enabled. * This combines the functionality of start() and registerAutocapture(). */ export declare const startWithAutocapture: () => void; export declare const logToConsole: () => void; export declare const setLogChannel: (logChannel: LogChannel) => void; export declare const setLogLevel: (logLevel: LogLevel) => void; export {};