import type { JsError } from '../types/internal';
type Options = Readonly<{
    showErrorsInLog?: boolean;
}>;
/**
 * Get browser JS errors.
 */
export declare const getBrowserJsErrors: (options?: Options) => readonly JsError[];
export {};
