import * as React from 'react';
import { EmphasizeTypes } from './';
export interface EmphasizeButtonProps {
    type: EmphasizeTypes;
    disabled?: boolean;
}
export declare const EmphasizeButton: React.FC<EmphasizeButtonProps>;
