import { z } from 'zod';
import { mintConfigSchema } from '../schemas/v1/config.js';
export type WarningGenerator = (config: z.infer<typeof mintConfigSchema>) => z.ZodIssue[];
export declare const aggregateWarnings: WarningGenerator;
