import { UpdatePluginConfigDto } from '../../../modules/config/dto/config.dto'; import { LOGGER_ROTATING_FILE_PLUGIN_NAME } from '../logger-rotating-file.constants'; export declare class RotatingFileUpdateConfigDto extends UpdatePluginConfigDto { type: typeof LOGGER_ROTATING_FILE_PLUGIN_NAME; enabled?: boolean; dir?: string | null; retention_days?: number; cleanup_cron?: string | null; file_prefix?: string | null; }