export declare const name = "hg";
export declare const detect: (directory: string) => string | undefined;
export declare const getSinceRevision: (directory: string, { branch }: {
    branch?: string | undefined;
}) => string;
export declare const getChangedFiles: (directory: string, revision: string | null, _staged?: boolean) => string[];
export declare const getUnstagedChangedFiles: () => never[];
export declare const stageFile: (directory: string, file: string) => void;
