import { z } from 'zod'; export declare const OutputProfileSchema: z.ZodEnum<["brief", "standard", "deep"]>; export type OutputProfile = z.infer; export interface OutputConstraints { readonly profile: OutputProfile; readonly maxFindings?: number; readonly maxOutputTokens?: number; readonly deltaOnly?: boolean; } export declare const DEFAULT_PROFILES: Readonly>; export declare function getDefaultProfile(actorType: string): OutputProfile; export declare function applyOutputConstraints(items: readonly T[], constraints: Readonly): T[]; //# sourceMappingURL=output-profile.d.ts.map