import { HttpClient, NonNullablePaths, MaybeContext, BuildRESTFunction } from '@wix/sdk-types'; import { PublishedPage, GetPublishedPageBySlugResponse, GetPublishedPageByPageIdResponse, PublishedPagesQueryBuilder, PublishedPageQuery, typedQueryPublishedPages } from './index.typings.mjs'; export { AccountInfo, ActionEvent, CommonQueryWithEntityContext, CursorPaging, CursorPagingMetadata, CursorQuery, CursorQueryPagingMethodOneOf, Cursors, DomainEvent, DomainEventBodyOneOf, Empty, EntityCreatedEvent, EntityDeletedEvent, EntityUpdatedEvent, GetPublishedPageByPageIdRequest, GetPublishedPageBySlugRequest, GetPublishedPageRequest, GetPublishedPageResponse, IdentificationData, IdentificationDataIdOneOf, MessageEnvelope, PublishedPageQuerySpec, PublishedPagesQueryResult, QueryPublishedPagesRequest, QueryPublishedPagesResponse, RestoreInfo, SortOrder, SortOrderWithLiterals, Sorting, WebhookIdentityType, WebhookIdentityTypeWithLiterals, utils } from './index.typings.mjs'; /** @internal */ declare function getPublishedPage$1(httpClient: HttpClient): GetPublishedPageSignature; interface GetPublishedPageSignature { /** * Retrieves a PublishedPage. * @param - ID of the PublishedPage to retrieve. * @returns The requested PublishedPage. */ (publishedPageId: string): Promise>; } /** @internal */ declare function getPublishedPageBySlug$1(httpClient: HttpClient): GetPublishedPageBySlugSignature; interface GetPublishedPageBySlugSignature { /** * Retrieves a PublishedPage by slug. * @param - ID of the PublishedPage to retrieve. */ (slug: string): Promise>; } /** @internal */ declare function getPublishedPageByPageId$1(httpClient: HttpClient): GetPublishedPageByPageIdSignature; interface GetPublishedPageByPageIdSignature { /** * Retrieves a PublishedPage by slug. * @param - ID of the PublishedPage to retrieve. */ (pageId: string): Promise>; } declare function customQueryPublishedPages(httpClient: HttpClient): { (): PublishedPagesQueryBuilder; (query: PublishedPageQuery): ReturnType; }; /** @internal */ declare const getPublishedPage: MaybeContext & typeof getPublishedPage$1>; /** @internal */ declare const getPublishedPageBySlug: MaybeContext & typeof getPublishedPageBySlug$1>; /** @internal */ declare const getPublishedPageByPageId: MaybeContext & typeof getPublishedPageByPageId$1>; declare const queryPublishedPages: MaybeContext & typeof customQueryPublishedPages>; export { GetPublishedPageByPageIdResponse, GetPublishedPageBySlugResponse, PublishedPage, PublishedPageQuery, PublishedPagesQueryBuilder, getPublishedPage, getPublishedPageByPageId, getPublishedPageBySlug, queryPublishedPages };