import { z } from 'zod';
export declare const SortDirection: z.ZodEnum<["ascending", "descending"]>;
export type SortDirection = z.infer<typeof SortDirection>;
export declare const SortType: z.ZodEnum<["new", "rating", "price", "bestseller"]>;
export type SortType = z.infer<typeof SortType>;
