import { Source, SourceManagementApi } from '@heap/heap-javascript-bridge-support'; import { AutocaptureBindOptions, CaptureSettings, StartRecordingOptions } from './settings'; import { PageviewSource } from './types'; export declare const source: Source; export declare const getSettings: () => CaptureSettings; export declare const getForegrounded: () => boolean; export declare const addSource: (heap: SourceManagementApi, options: AutocaptureBindOptions, timestamp: Date, startRecordingOptions?: StartRecordingOptions) => void; export declare const addPageviewSource: (pageviewSource: PageviewSource) => void; export declare const removePageviewSource: (pageviewSource: PageviewSource) => void; export declare const removeAllPageviewSources: () => void;