import { ANY } from '@toreda/types';
import { Log } from '../../log';
import { LogStateGlobal } from '../state/global';
/**
 * Used by makeGroup in a existing Log
 *
 * @category Options
 */
export declare type LogOptionsGroup = {
    state: LogStateGlobal;
    id: string;
    parent?: Log;
    path?: string[];
    enabled?: boolean;
    level?: number;
};
export declare function isLogOptionsGroup(options: ANY): options is LogOptionsGroup;
