export interface LoggerConfiguration {
    level: "info" | "error" | "warn" | "debug";
    output?: "console" | "file";
    filePath?: string;
    format?: "json" | "text";
    maxFileSize?: string;
    maxFiles?: number;
}
