import { z } from 'zod';
export interface SchemaPair {
    zod: z.ZodTypeAny;
    json: any;
}
export declare function getSchemaByCategory(category: string): SchemaPair;
export declare function getSchemaByCategoryLegacy(category: string): SchemaPair;
