export interface EditorUrls { /** * Editor type. * @readonly */ editorType?: EditorType; /** * Editor URL. * @readonly */ editorUrl?: string | null; /** * Preview URL. * @readonly */ previewUrl?: string | null; } export declare enum EditorType { /** Unknown editor type. */ UNKNOWN = "UNKNOWN", /** The classic Wix Editor. */ WIX_EDITOR = "WIX_EDITOR", /** Deprecated. Expected end-of-life date: July 1, 2024. */ EDITOR_X = "EDITOR_X", /** Wix's Editor built for agencies and enterprises. */ WIX_STUDIO = "WIX_STUDIO" } export interface GetEditorUrlsRequest { } export interface GetEditorUrlsResponse { /** Editor URL. */ urls?: EditorUrls; } interface EditorUrlsNonNullableFields { editorType: EditorType; } export interface GetEditorUrlsResponseNonNullableFields { urls?: EditorUrlsNonNullableFields; } /** * Retrieves a site's Editor URLs. * @public * @permissionId MetaSite.Read * @permissionScope Manage Bookings Services and Settings * @permissionScopeId SCOPE.BOOKINGS.CONFIGURATION * @permissionScope Manage Portfolio * @permissionScopeId SCOPE.PORTFOLIO.MANAGE-PORTFOLIO * @permissionScope Manage Restaurants - all permissions * @permissionScopeId SCOPE.RESTAURANTS.MEGA-SCOPES * @permissionScope Read Site URLs * @permissionScopeId SCOPE.DC-SITES.READ-URLS * @applicableIdentity APP * @fqn wix.editorurls.v2.EditorUrlsApi.GetEditorUrls */ export declare function getEditorUrls(): Promise; export {};