import { z } from "@medusajs/framework/zod";
export declare const StoreGetShippingOptionsParams: z.ZodObject<{
    fields: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
    fields?: string | undefined;
}, {
    fields?: string | undefined;
}>;
export declare const StoreGetShippingOptionsFields: z.ZodObject<{
    cart_id: z.ZodString;
    is_return: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodBoolean, z.ZodString]>, string | boolean, string | boolean>, boolean, string | boolean>>;
}, "strict", z.ZodTypeAny, {
    cart_id: string;
    is_return?: boolean | undefined;
}, {
    cart_id: string;
    is_return?: string | boolean | undefined;
}>;
export type StoreGetShippingOptionsType = z.infer<typeof StoreGetShippingOptions>;
export declare const StoreGetShippingOptions: z.ZodObject<{} & {
    [x: string]: any;
    $and: z.ZodOptional<z.ZodLazy<z.ZodArray<z.ZodObject<{
        cart_id: z.ZodString;
        is_return: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodBoolean, z.ZodString]>, string | boolean, string | boolean>, boolean, string | boolean>>;
    }, "strict", z.ZodTypeAny, {
        cart_id: string;
        is_return?: boolean | undefined;
    }, {
        cart_id: string;
        is_return?: string | boolean | undefined;
    }>, "many">>>;
    $or: z.ZodOptional<z.ZodLazy<z.ZodArray<z.ZodObject<{
        cart_id: z.ZodString;
        is_return: z.ZodOptional<z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodBoolean, z.ZodString]>, string | boolean, string | boolean>, boolean, string | boolean>>;
    }, "strict", z.ZodTypeAny, {
        cart_id: string;
        is_return?: boolean | undefined;
    }, {
        cart_id: string;
        is_return?: string | boolean | undefined;
    }>, "many">>>;
}, "strip", z.ZodTypeAny, {
    [x: string]: any;
    $and?: unknown;
    $or?: unknown;
}, {
    [x: string]: any;
    $and?: unknown;
    $or?: unknown;
}>;
export type StoreCalculateShippingOptionPriceType = z.infer<typeof StoreCalculateShippingOptionPrice>;
export declare const StoreCalculateShippingOptionPrice: z.ZodObject<{
    cart_id: z.ZodString;
    data: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
}, "strip", z.ZodTypeAny, {
    cart_id: string;
    data?: Record<string, unknown> | undefined;
}, {
    cart_id: string;
    data?: Record<string, unknown> | undefined;
}>;
//# sourceMappingURL=validators.d.ts.map