import { AutoConsoleGroupDefaultOptions } from './defaults'; type AutoConsoleGroup = Console & { expand: (value: boolean) => void; endAutoGroup: () => void; errorBoundary: (func: Function) => Function; event: (value: string) => void; label: (value: string) => void; purge: () => void; showTime: (value: boolean) => void; touch: () => void; }; type AutoConsoleGroupOptions = Omit; export default function (options?: AutoConsoleGroupOptions): AutoConsoleGroup; export {};