import z from "zod"; import { CliCommand } from "./common.js"; import type { AbstractReport } from "../reports/Report.js"; export declare class ReportCommand extends CliCommand | AbstractReport[]> { config: string; static usage: import("clipanion").Usage; static paths: string[][]; getReports(): Promise | AbstractReport[]>; } export declare const ReportServiceConfigSchema: z.ZodObject<{ reports: z.ZodUnion<[z.ZodArray, z.ZodAny]>; }, "strip", z.ZodTypeAny, { reports?: any; }, { reports?: any; }>;