import type { AnyFunction } from "@utils/types"; export interface AcceleratorParams { path: string | null; input: string; output: string; } export type AcceleratorContentType = (string | { message?: string; if?: string; content?: string; ctx?: Record; } | [ZodAcceleratorContent, AcceleratorParams] | null | undefined | boolean)[]; export declare class ZodAcceleratorContent { private static readonly replacerList; private static inc; readonly id: string; content: string[]; readonly ctx: Record; addContent(...content: AcceleratorContentType): void; addContext(ctx: Record): void; exportContent(params: AcceleratorParams): string; toFunction(): AnyFunction; replacer(content: string): string; private static generateId; }