import { default as React } from 'react';
export interface SteamButtonProps {
    mode?: 'signin' | 'signup' | 'continue';
    dark?: boolean;
    shape?: 'square' | 'rounded';
    width?: string | number;
    height?: string | number;
    onClick?: () => void;
    disabled?: boolean;
    className?: string;
}
declare const SteamButton: React.FC<SteamButtonProps>;
export default SteamButton;
