export interface HookOptions {
    mode?: 'fast' | 'full';
    failOn?: 'error' | 'warning';
}
export declare function installPreCommitHooks(options: HookOptions): void;
