import { z } from 'zod';
import { BaseResourceSchema } from './base.js';
export declare const customCardTemplateResourceSettingSchema: z.ZodObject<{
    name: z.ZodString;
    cardSettings: z.ZodArray<z.ZodObject<{
        level: z.ZodNumber;
        style: z.ZodEnum<["classic", "peaceful", "lively", "nature", "fresh", "simple", "custom"]>;
        customImageId: z.ZodOptional<z.ZodString>;
    }, "strip", z.ZodTypeAny, {
        level: number;
        style: "custom" | "classic" | "peaceful" | "lively" | "nature" | "fresh" | "simple";
        customImageId?: string | undefined;
    }, {
        level: number;
        style: "custom" | "classic" | "peaceful" | "lively" | "nature" | "fresh" | "simple";
        customImageId?: string | undefined;
    }>, "many">;
}, "strip", z.ZodTypeAny, {
    name: string;
    cardSettings: {
        level: number;
        style: "custom" | "classic" | "peaceful" | "lively" | "nature" | "fresh" | "simple";
        customImageId?: string | undefined;
    }[];
}, {
    name: string;
    cardSettings: {
        level: number;
        style: "custom" | "classic" | "peaceful" | "lively" | "nature" | "fresh" | "simple";
        customImageId?: string | undefined;
    }[];
}>;
export type ICustomCardTemplateResourceSettingSchema = z.infer<typeof customCardTemplateResourceSettingSchema>;
export declare const CustomCardTemplateResourceSchema: BaseResourceSchema<typeof customCardTemplateResourceSettingSchema>;
