import { ZirconLogData, ZirconLogLevel } from "../Client/Types";
import { LogEvent } from "@rbxts/log";
export declare namespace ZirconLogService {
    function WriteStructured(data: LogEvent): void;
    /**
     * Writes a message to either the output stream or input stream of Zircon
     */
    function Write(level: ZirconLogLevel, tag: string, message: string, data: ZirconLogData): void;
}
export declare type ZirconLogService = typeof ZirconLogService;
