import { z } from 'zod';
export declare const CatalogCategory: z.ZodObject<{
    id: z.ZodNumber;
    parent_id: z.ZodNullable<z.ZodNumber>;
    image_url: z.ZodString;
    title: z.ZodString;
    _links: z.ZodObject<{
        self: z.ZodObject<{
            href: z.ZodString;
        }, "strip", z.ZodTypeAny, {
            href?: string;
        }, {
            href?: string;
        }>;
    }, "strip", z.ZodTypeAny, {
        self?: {
            href?: string;
        };
    }, {
        self?: {
            href?: string;
        };
    }>;
}, "strip", z.ZodTypeAny, {
    title?: string;
    id?: number;
    parent_id?: number;
    image_url?: string;
    _links?: {
        self?: {
            href?: string;
        };
    };
}, {
    title?: string;
    id?: number;
    parent_id?: number;
    image_url?: string;
    _links?: {
        self?: {
            href?: string;
        };
    };
}>;
export type CatalogCategory = z.infer<typeof CatalogCategory>;
