import * as React from 'react';
export interface GoogleProps {
    gmapsKey: string;
}
export interface GoogleComponentProps extends GoogleProps {
    mapsAPILoadedAction: () => any;
    mapsAuthErrorAction: () => any;
}
export declare const Google: React.ComponentClass<GoogleProps>;
