import { PropsWithChildren } from 'react'; import './browser.css'; export declare const browsers: readonly [{ readonly id: "chrome"; readonly name: "Chrome"; }, { readonly id: "chrome-with-url"; readonly name: "Chrome (With URL)"; }]; export declare const isBrowserType: (id: string) => boolean; export declare function BrowserMockup({ type, ...rest }: PropsWithChildren<{ type: string; }>): import("react/jsx-runtime").JSX.Element;