export default class GitHook {
    hooksDirPath: string;
    name: string;
    content: string;
    constructor(hooksDirPath: string, name: string, content: string);
    get fullPath(): string;
    isExistSync(): boolean;
    writeSync(override?: boolean, throws?: boolean): true | null;
}
