import React from 'react';
import { ButtonProps } from '../Button';
export interface RightButtonProps extends ButtonProps {
    isShow?: boolean;
    actionName?: string;
    /** 宽度 */
    width: number;
}
interface RightButtonState {
}
export default class RightButton extends React.PureComponent<RightButtonProps, RightButtonState> {
    constructor(props: RightButtonProps);
    render(): JSX.Element;
}
export {};
