interface Cb {
    (err: Error | null, output: string): void;
}
export default function (gitWorkTree: string | undefined, command: string, callback?: Cb): string | null;
export {};
