/// <reference types="react" />
import { ScreenPlugin } from '../../packages/react-screens';
import { BranchSwitcherProps } from './types';
export declare class BranchSwitcherPlugin implements ScreenPlugin {
    __type: "screen";
    Icon: import("react-icons/lib").IconType;
    name: string;
    layout: "popup";
    listBranches: BranchSwitcherProps['listBranches'];
    createBranch: BranchSwitcherProps['createBranch'];
    chooseBranch: BranchSwitcherProps['chooseBranch'];
    constructor(options: BranchSwitcherProps);
    Component: () => JSX.Element;
}
