import { z } from 'zod';
/** Item favorite - key field only, passthrough for API flexibility */
export declare const ItemFavoriteSchema: z.ZodObject<{
    itemFavoritesUid: z.ZodNumber;
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
    itemFavoritesUid: z.ZodNumber;
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
    itemFavoritesUid: z.ZodNumber;
}, z.ZodTypeAny, "passthrough">>;
/** Create request - passthrough for flexible input */
export declare const CreateItemFavoriteRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
/** Update request - passthrough for flexible input */
export declare const UpdateItemFavoriteRequestSchema: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
/** Item favorites list params */
export declare const ItemFavoritesListParamsSchema: z.ZodObject<{
    limit: z.ZodOptional<z.ZodNumber>;
    offset: z.ZodOptional<z.ZodNumber>;
} & {
    edgeCache: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>, z.ZodLiteral<4>, z.ZodLiteral<5>, z.ZodLiteral<8>, z.ZodLiteral<"1">, z.ZodLiteral<"2">, z.ZodLiteral<"3">, z.ZodLiteral<"4">, z.ZodLiteral<"5">, z.ZodLiteral<"8">]>, 3 | 2 | 1 | 4 | 5 | 8, 3 | 2 | 1 | 4 | "1" | 5 | 8 | "2" | "3" | "4" | "5" | "8">>;
} & {
    itemId: z.ZodOptional<z.ZodString>;
    categoryUid: z.ZodOptional<z.ZodNumber>;
    brandUid: z.ZodOptional<z.ZodNumber>;
    orderBy: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
    limit?: number | undefined;
    offset?: number | undefined;
    edgeCache?: 3 | 2 | 1 | 4 | 5 | 8 | undefined;
    orderBy?: string | undefined;
    itemId?: string | undefined;
    categoryUid?: number | undefined;
    brandUid?: number | undefined;
}, {
    limit?: number | undefined;
    offset?: number | undefined;
    edgeCache?: 3 | 2 | 1 | 4 | "1" | 5 | 8 | "2" | "3" | "4" | "5" | "8" | undefined;
    orderBy?: string | undefined;
    itemId?: string | undefined;
    categoryUid?: number | undefined;
    brandUid?: number | undefined;
}>;
export declare const ItemFavoriteResponseSchema: z.ZodEffects<z.ZodObject<{
    count: z.ZodNumber;
    data: z.ZodObject<{
        itemFavoritesUid: z.ZodNumber;
    }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
        itemFavoritesUid: z.ZodNumber;
    }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
        itemFavoritesUid: z.ZodNumber;
    }, z.ZodTypeAny, "passthrough">>;
    message: z.ZodString;
    options: z.ZodUnion<[z.ZodArray<z.ZodUnknown, "many">, z.ZodRecord<z.ZodString, z.ZodUnknown>]>;
    params: z.ZodUnion<[z.ZodArray<z.ZodUnknown, "many">, z.ZodRecord<z.ZodString, z.ZodUnknown>]>;
    status: z.ZodNumber;
    total: z.ZodNumber;
    totalResults: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
    params: Record<string, unknown> | unknown[];
    data: {
        itemFavoritesUid: number;
    } & {
        [k: string]: unknown;
    };
    options: Record<string, unknown> | unknown[];
    status: number;
    message: string;
    count: number;
    total: number;
    totalResults: number;
}, {
    params: Record<string, unknown> | unknown[];
    data: {
        itemFavoritesUid: number;
    } & {
        [k: string]: unknown;
    };
    options: Record<string, unknown> | unknown[];
    status: number;
    message: string;
    count: number;
    total: number;
    totalResults: number;
}>, {
    params: Record<string, unknown> | unknown[];
    data: {
        itemFavoritesUid: number;
    } & {
        [k: string]: unknown;
    };
    options: Record<string, unknown> | unknown[];
    status: number;
    message: string;
    count: number;
    total: number;
    totalResults: number;
}, {
    params: Record<string, unknown> | unknown[];
    data: {
        itemFavoritesUid: number;
    } & {
        [k: string]: unknown;
    };
    options: Record<string, unknown> | unknown[];
    status: number;
    message: string;
    count: number;
    total: number;
    totalResults: number;
}>;
export declare const ItemFavoriteListResponseSchema: z.ZodEffects<z.ZodObject<{
    count: z.ZodNumber;
    data: z.ZodArray<z.ZodObject<{
        itemFavoritesUid: z.ZodNumber;
    }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
        itemFavoritesUid: z.ZodNumber;
    }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
        itemFavoritesUid: z.ZodNumber;
    }, z.ZodTypeAny, "passthrough">>, "many">;
    message: z.ZodString;
    options: z.ZodUnion<[z.ZodArray<z.ZodUnknown, "many">, z.ZodRecord<z.ZodString, z.ZodUnknown>]>;
    params: z.ZodUnion<[z.ZodArray<z.ZodUnknown, "many">, z.ZodRecord<z.ZodString, z.ZodUnknown>]>;
    status: z.ZodNumber;
    total: z.ZodNumber;
    totalResults: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
    params: Record<string, unknown> | unknown[];
    data: z.objectOutputType<{
        itemFavoritesUid: z.ZodNumber;
    }, z.ZodTypeAny, "passthrough">[];
    options: Record<string, unknown> | unknown[];
    status: number;
    message: string;
    count: number;
    total: number;
    totalResults: number;
}, {
    params: Record<string, unknown> | unknown[];
    data: z.objectInputType<{
        itemFavoritesUid: z.ZodNumber;
    }, z.ZodTypeAny, "passthrough">[];
    options: Record<string, unknown> | unknown[];
    status: number;
    message: string;
    count: number;
    total: number;
    totalResults: number;
}>, {
    params: Record<string, unknown> | unknown[];
    data: z.objectOutputType<{
        itemFavoritesUid: z.ZodNumber;
    }, z.ZodTypeAny, "passthrough">[];
    options: Record<string, unknown> | unknown[];
    status: number;
    message: string;
    count: number;
    total: number;
    totalResults: number;
}, {
    params: Record<string, unknown> | unknown[];
    data: z.objectInputType<{
        itemFavoritesUid: z.ZodNumber;
    }, z.ZodTypeAny, "passthrough">[];
    options: Record<string, unknown> | unknown[];
    status: number;
    message: string;
    count: number;
    total: number;
    totalResults: number;
}>;
export type ItemFavorite = z.infer<typeof ItemFavoriteSchema>;
export type CreateItemFavoriteRequest = z.infer<typeof CreateItemFavoriteRequestSchema>;
export type UpdateItemFavoriteRequest = z.infer<typeof UpdateItemFavoriteRequestSchema>;
export type ItemFavoritesListParams = z.infer<typeof ItemFavoritesListParamsSchema>;
export type ItemFavoriteResponse = z.infer<typeof ItemFavoriteResponseSchema>;
export type ItemFavoriteListResponse = z.infer<typeof ItemFavoriteListResponseSchema>;
//# sourceMappingURL=favorites.d.ts.map