/// <reference types="react" />
import { TranslationBundle } from '@jupyterlab/translation';
import { CommandRegistry } from '@lumino/commands';
/**
 * RebaseAction property
 */
export interface IRebaseActionProps {
    /**
     * Whether some files are in conflict or not.
     */
    hasConflict: boolean;
    /**
     * Application command registry
     */
    commands: CommandRegistry;
    /**
     * Translation object.
     */
    trans: TranslationBundle;
}
/**
 * Component to trigger action resolving a rebase.
 *
 * @param props Component properties
 */
export declare function RebaseAction(props: IRebaseActionProps): JSX.Element;
