export {};
declare global {
    interface Window {
        ethereum?: {
            isMetaMask?: boolean;
            isRabby?: boolean;
            request: (args: {
                method: string;
                params?: any[];
            }) => Promise<any>;
            on: (event: string, handler: (...args: any[]) => void) => void;
            removeListener: (event: string, handler: (...args: any[]) => void) => void;
        };
    }
}
//# sourceMappingURL=types.d.ts.map