import { HttpClient, NonNullablePaths, MaybeContext, BuildRESTFunction } from '@wix/sdk-types'; import { GetMyMemberPageOptions, GetMyMemberPageResponse, GetSiteMapOptions, GetSiteMapResponse } from './index.typings.js'; export { AppData, Config, GetMyMemberPageRequest, GetSiteMapRequest, Head, MemberPageResult, Numbers, PageRole, Pattern, PublicData, RequestInfo, SantaMember, SeoData, ViewedUser } from './index.typings.js'; declare function getMyMemberPage$1(httpClient: HttpClient): GetMyMemberPageSignature; interface GetMyMemberPageSignature { /** * Returns my member page */ (options?: GetMyMemberPageOptions): Promise>; } declare function getSiteMap$1(httpClient: HttpClient): GetSiteMapSignature; interface GetSiteMapSignature { /** * Returns site map * No permission as the request can be made by anything pretty much */ (options?: GetSiteMapOptions): Promise; } declare const getMyMemberPage: MaybeContext & typeof getMyMemberPage$1>; declare const getSiteMap: MaybeContext & typeof getSiteMap$1>; export { GetMyMemberPageOptions, GetMyMemberPageResponse, GetSiteMapOptions, GetSiteMapResponse, getMyMemberPage, getSiteMap };