interface Options {
    /**
     * Use commitlint.
     *
     * Enabled by default if you have commitlint installed.
     */
    commitlint?: boolean;
    /**
     * Use lint-staged.
     *
     * Enabled by default if you have lint-staged installed.
     */
    lintStaged?: boolean;
}

declare function simpleGitHooks(options?: Options, userConfig?: Record<string, string>): {
    [x: string]: string;
};

export { type Options as O, simpleGitHooks as s };
