import { Logger } from "../logger";
import { Command } from "./command";
export interface PostCheckoutOptions {
    previousHead: string;
    newHead: string;
    isBranch?: boolean;
}
export declare function createPostCheckoutCommand(deps: {
    logger: Logger;
}): Command<PostCheckoutOptions>;
