import type { RumConfiguration } from '../configuration';
import type { ViewportDimension } from '../../browser/viewportObservable';
export type DisplayContext = ReturnType<typeof startDisplayContext>;
export declare function startDisplayContext(configuration: RumConfiguration): {
    get: () => {
        viewport: ViewportDimension;
    } | undefined;
    stop: () => void;
};
