declare function isChrome(): boolean;
declare global {
    interface Window {
        chrome: any;
    }
}

export { isChrome };
