import Commands from '@kui-shell/core/api/commands'; interface Options { asHTML?: boolean; asJSON?: boolean; } interface ZaprEntry { timestamp: string | Text | Element; rawTimestamp: string; logType: string; provider: string; origin: string; rest: string | Record; runLength?: number; } export declare const formatLogs: (raw: string, execOptions: Commands.ExecOptions, options?: Options) => HTMLDivElement | ZaprEntry[]; export {};