import { z } from 'zod';
export declare const inputCatalog: {
    props: z.ZodObject<{
        label: z.ZodString;
        placeholder: z.ZodOptional<z.ZodString>;
        type: z.ZodOptional<z.ZodEnum<{
            number: "number";
            url: "url";
            email: "email";
            text: "text";
            password: "password";
            tel: "tel";
        }>>;
        value: z.ZodOptional<z.ZodString>;
        disabled: z.ZodOptional<z.ZodBoolean>;
    }, z.core.$strip>;
    slots: never[];
    events: string[];
    description: string;
};
