import { HttpClient, NonNullablePaths, MaybeContext, BuildRESTFunction } from '@wix/sdk-types'; import { GetCheckoutContentIdentifiers, GetCheckoutContentOptions, GetCheckoutContentResponse, GetCheckoutContentApplicationErrors } from './index.typings.js'; export { CheckoutContent, CheckoutContentProvider, GetCheckoutContentRequest } from './index.typings.js'; declare function getCheckoutContent$1(httpClient: HttpClient): GetCheckoutContentSignature; interface GetCheckoutContentSignature { /** * Retrieves a CheckoutContent. */ (identifiers: NonNullablePaths, options?: GetCheckoutContentOptions): Promise; } declare const getCheckoutContent: MaybeContext & typeof getCheckoutContent$1>; export { GetCheckoutContentApplicationErrors, GetCheckoutContentIdentifiers, GetCheckoutContentOptions, GetCheckoutContentResponse, getCheckoutContent };