import type { Context, Options } from '..'; export type Clients = ReturnType; export declare const getClients: (options: Options, ctx: Context) => { search: { facets: (args: Omit) => Promise; products: (args: Omit) => Promise; suggestedTerms: (args: Omit) => Promise; topSearches: () => Promise; productCount: (args: Pick) => Promise; }; commerce: { catalog: { salesChannel: (sc: string) => Promise; brand: { list: () => Promise; }; category: { tree: (depth?: number) => Promise; }; portal: { pagetype: (slug: string) => Promise; }; products: { crossselling: ({ type, productId, groupByProduct, }: { type: "whoboughtalsobought" | "whosawalsosaw" | "similars" | "whosawalsobought" | "accessories" | "suggestions"; productId: string; groupByProduct?: boolean | undefined; }) => Promise; }; }; checkout: { simulation: (args: import("./commerce/types/Simulation").SimulationArgs, { salesChannel }?: import("./commerce/types/Simulation").SimulationOptions) => Promise; shippingData: ({ id, index, deliveryMode, selectedAddresses, }: { id: string; index: number; deliveryMode?: import("./commerce/types/ShippingData").DeliveryMode | null | undefined; selectedAddresses: import("./commerce/types/ShippingData").SelectedAddress[]; }, setDeliveryWindow?: boolean | undefined) => Promise; marketingData: ({ id, marketingData, }: { id: string; marketingData: import("../../..").StoreMarketingData; }) => Promise; orderForm: ({ id, refreshOutdatedData, channel, }: { id?: string | undefined; refreshOutdatedData?: boolean | undefined; channel?: Required | undefined; }) => Promise; clearOrderFormMessages: ({ id }: { id: string; }) => Promise; updateOrderFormItems: ({ id, orderItems, allowOutdatedData, salesChannel, shouldSplitItem, }: { id: string; orderItems: import("./commerce/types/OrderForm").OrderFormInputItem[]; allowOutdatedData?: "paymentData" | undefined; salesChannel?: string | undefined; shouldSplitItem?: boolean | null | undefined; }) => Promise; setCustomData: ({ id, appId, key, value, }: { id: string; appId: string; key: string; value: string; }) => Promise; region: ({ postalCode, geoCoordinates, country, salesChannel, }: import("./commerce/types/Region").RegionInput) => Promise; address: ({ postalCode, country, }: import("./commerce/types/Address").AddressInput) => Promise; cancelOrder: ({ orderId, customerEmail, reason, }: import("../../..").IUserOrderCancel) => Promise | undefined; pickupPoints: ({ geoCoordinates, }: import("./commerce/types/PickupPoints").PickupPointsInput) => Promise; }; session: (search: string) => Promise; subscribeToNewsletter: (data: { name: string; email: string; }) => Promise; profile: { addresses: (userId: string) => Promise>; }; oms: { userOrder: ({ orderId }: { orderId: string; }) => Promise; listUserOrders: ({ page, status, dateInitial, dateFinal, text, clientEmail, perPage, pendingMyApproval, }: import("../../..").QueryListUserOrdersArgs) => Promise; getCommercialAuthorizationsByOrderId: ({ orderId, }: import("../../..").ICommercialAuthorizationByOrderId) => Promise; processOrderAuthorization: ({ orderAuthorizationId, dimensionId, ruleId, approved, }: import("../../..").IProcessOrderAuthorization) => Promise; }; units: { getUnitByUserId: ({ userId, }: { userId: string; }) => Promise; getOrgUnitById: ({ orgUnitId, }: { orgUnitId: string; }) => Promise; getScopesByOrgUnit: ({ orgUnitId, }: { orgUnitId: string; }) => Promise; }; licenseManager: { getUserById: ({ userId, }: { userId: string; }) => Promise<{ id: string; name: string; email: string; }>; getUserByEmail: ({ email, }: { email: string; }) => Promise<{ id: string; name: string; email: string; }>; }; masterData: { getContractById: ({ contractId, }: { contractId: string; }) => Promise; getShopperById: ({ userId, }: { userId: string; }) => Promise<{ firstName: string; lastName: string; email: string; phone: string; }[]>; }; vtexid: { validate: () => Promise; }; }; }; //# sourceMappingURL=index.d.ts.map