import { z } from 'zod';
export declare const CatalogOption: z.ZodObject<{
    name: z.ZodString;
    techniques: z.ZodArray<z.ZodEnum<["dtg", "digital", "cut-sew", "uv", "embroidery", "sublimation", "dtfilm"]>, "many">;
    type: z.ZodString;
    values: z.ZodArray<z.ZodUnknown, "many">;
}, "strip", z.ZodTypeAny, {
    values?: unknown[];
    type?: string;
    name?: string;
    techniques?: ("dtg" | "digital" | "cut-sew" | "uv" | "embroidery" | "sublimation" | "dtfilm")[];
}, {
    values?: unknown[];
    type?: string;
    name?: string;
    techniques?: ("dtg" | "digital" | "cut-sew" | "uv" | "embroidery" | "sublimation" | "dtfilm")[];
}>;
export type CatalogOption = z.infer<typeof CatalogOption>;
