import z from "zod";
declare const StoreGetTolgeeShippingOptionsQueryParams: z.ZodObject<{
    cart_id: z.ZodString;
    is_return: z.ZodOptional<z.ZodBoolean>;
    country_code: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
    cart_id: string;
    is_return?: boolean | undefined;
    country_code?: string | undefined;
}, {
    cart_id: string;
    is_return?: boolean | undefined;
    country_code?: string | undefined;
}>;
export type StoreGetTolgeeShippingOptionList = z.infer<typeof StoreGetTolgeeShippingOptionsQueryParams>;
declare const _default: import("@medusajs/framework").MiddlewaresConfig;
export default _default;
