import * as React from 'react'; export interface MdButtonProps extends React.ButtonHTMLAttributes { theme?: 'primary' | 'secondary' | 'tertiary' | 'danger' | 'danger-secondary' | 'danger-tertiary'; leftIcon?: React.ReactNode; rightIcon?: React.ReactNode; topIcon?: React.ReactNode; children?: string | React.ReactNode; mode?: 'small' | 'medium' | 'large'; /** @deprecated Use `mode="small"` instead */ small?: boolean; type?: 'button' | 'submit' | 'reset' | undefined; loading?: boolean; asChild?: boolean; asChildContent?: React.ReactNode; } export declare const MdButton: React.FunctionComponent; export default MdButton;