import React, { PureComponent } from 'react';
import { TextButtonProps } from './TextButton.types';
declare class TextButton extends PureComponent<TextButtonProps> {
    static displayName: string;
    static defaultProps: TextButtonProps;
    button: React.RefObject<HTMLButtonElement>;
    /**
     * Sets focus on the element
     */
    focus: () => void;
    render(): React.JSX.Element;
}
export default TextButton;
//# sourceMappingURL=TextButton.d.ts.map