export declare const browser: {
    tabs: {
        create: ({ url }: {
            url: string;
        }) => Window | null;
    };
};
