import { default as React } from 'react';
import { GoogleButtonMode, GoogleButtonShape } from './GoogleButton.types';
interface GoogleButtonProps {
    mode?: GoogleButtonMode;
    dark?: boolean;
    shape?: GoogleButtonShape;
    width?: string | number;
    height?: string | number;
    onClick?: () => void;
    disabled?: boolean;
    className?: string;
}
declare const GoogleButton: React.FC<GoogleButtonProps>;
export default GoogleButton;
