import type { Options, StringTask } from '../types'; import type { LogResult, SimpleGit } from '../../../typings'; export interface DefaultLogFields { hash: string; date: string; message: string; refs: string; body: string; author_name: string; author_email: string; } export declare type LogOptions = { file?: string; format?: T; from?: string; mailMap?: boolean; maxCount?: number; multiLine?: boolean; splitter?: string; strictDate?: boolean; symmetric?: boolean; to?: string; }; interface ParsedLogOptions { fields: string[]; splitter: string; commands: string[]; } export declare function parseLogOptions(opt?: Options | LogOptions, customArgs?: string[]): ParsedLogOptions; export declare function logTask(splitter: string, fields: string[], customArgs: string[]): StringTask>; export default function (): Pick; export {};