import * as z from "zod/v4-mini"; export type CustomerPortalOrdersGetSecurity = { customerSession?: string | undefined; memberSession?: string | undefined; }; export type CustomerPortalOrdersGetRequest = { /** * The order ID. */ id: string; }; /** @internal */ export type CustomerPortalOrdersGetSecurity$Outbound = { customer_session?: string | undefined; member_session?: string | undefined; }; /** @internal */ export declare const CustomerPortalOrdersGetSecurity$outboundSchema: z.ZodMiniType; export declare function customerPortalOrdersGetSecurityToJSON(customerPortalOrdersGetSecurity: CustomerPortalOrdersGetSecurity): string; /** @internal */ export type CustomerPortalOrdersGetRequest$Outbound = { id: string; }; /** @internal */ export declare const CustomerPortalOrdersGetRequest$outboundSchema: z.ZodMiniType; export declare function customerPortalOrdersGetRequestToJSON(customerPortalOrdersGetRequest: CustomerPortalOrdersGetRequest): string; //# sourceMappingURL=customerportalordersget.d.ts.map