import { c as GetCheckoutContentRequest$1, b as GetCheckoutContentResponse$1 } from './ecom-api-v1-checkout-content-provider-checkout-content.universal-BpPUnVg4.js'; interface GetCheckoutContentRequest { /** ID of the app that provides the content. */ appId: string; /** ID of the specific component content. */ componentId: string; /** When a language is specified, it will be retrieved the content in that language. */ languageCode?: string | null; } interface GetCheckoutContentResponse { /** The requested CheckoutContent. */ checkoutContent?: CheckoutContent; } interface CheckoutContent { /** * Text to display in place of the "Continue shopping" link. * @readonly */ continueShoppingLink?: string | null; /** * Text to display in place of the "Order summary" title. * @readonly */ orderSummary?: string | null; /** * Text to display in place of the "Customer details" title. * @readonly */ customerDetails?: string | null; /** * Text to display in place of the "Review and place order" title. * @readonly */ reviewAndPlaceOrder?: string | null; /** * Text to display in place of the "Place order" button. * @readonly */ placeOrderButton?: string | null; /** * Text to display in place of the "Place order & pay" button. * @readonly */ placeOrderPayButton?: string | null; } type __PublicMethodMetaInfo = { getUrl: (context: any) => string; httpMethod: K; path: string; pathParams: M; __requestType: T; __originalRequestType: S; __responseType: Q; __originalResponseType: R; }; declare function getCheckoutContent(): __PublicMethodMetaInfo<'GET', { appId: string; componentId: string; }, GetCheckoutContentRequest$1, GetCheckoutContentRequest, GetCheckoutContentResponse$1, GetCheckoutContentResponse>; export { type __PublicMethodMetaInfo, getCheckoutContent };