import { Options } from '../types';
export interface DefaultLogFields {
    hash: string;
    date: string;
    message: string;
    refs: string;
    body: string;
    author_name: string;
    author_email: string;
}
export declare type LogOptions<T = DefaultLogFields> = Options | {
    format?: T;
    file?: string;
    from?: string;
    multiLine?: boolean;
    symmetric?: boolean;
    strictDate?: boolean;
    to?: string;
};
