import { HttpClient, NonNullablePaths, MaybeContext, BuildRESTFunction } from '@wix/sdk-types'; import { GetLlmsTxtOptions, GetLlmsTxtResponse, UpdateLlmsTxtOptions, UpdateLlmsTxtResponse, AppendLlmsTxtOptions, AppendLlmsTxtResponse, UpdateLlmsTxtHiddenStatusOptions, UpdateLlmsTxtHiddenStatusResponse } from './index.typings.js'; export { AccountInfo, ActionEvent, AppendLlmsTxtRequest, DomainEvent, DomainEventBodyOneOf, EntityCreatedEvent, EntityDeletedEvent, EntityUpdatedEvent, GetLlmsTxtRequest, IdentificationData, IdentificationDataIdOneOf, LlmsTxt, MessageEnvelope, RestoreInfo, UpdateLlmsTxtHiddenStatusRequest, UpdateLlmsTxtManuallyEditedStatusRequest, UpdateLlmsTxtManuallyEditedStatusResponse, UpdateLlmsTxtRequest, WebhookIdentityType, WebhookIdentityTypeWithLiterals } from './index.typings.js'; declare function getLlmsTxt$1(httpClient: HttpClient): GetLlmsTxtSignature; interface GetLlmsTxtSignature { /** * Retrieves the `llms.txt` file entity. * @returns The response of the Llms.txt file request */ (options?: GetLlmsTxtOptions): Promise>; } declare function updateLlmsTxt$1(httpClient: HttpClient): UpdateLlmsTxtSignature; interface UpdateLlmsTxtSignature { /** * Updates the `llms.txt` file entity. * * The content can be set to an empty string to create a blank file. * * To restore Wix's default content, set the `default` field to `true` and omit the `content` field. */ (options?: UpdateLlmsTxtOptions): Promise>; } declare function appendLlmsTxt$1(httpClient: HttpClient): AppendLlmsTxtSignature; interface AppendLlmsTxtSignature { /** * Appends additional content to the existing `llms.txt` file. * * The provided content will be added to the end of the current file content. * * To reset to Wix's default content instead, set `default` to `true` and omit the `content` field. */ (options?: AppendLlmsTxtOptions): Promise>; } declare function updateLlmsTxtHiddenStatus$1(httpClient: HttpClient): UpdateLlmsTxtHiddenStatusSignature; interface UpdateLlmsTxtHiddenStatusSignature { /** * Updates only the hidden state of the Llms.txt file. * Content remains unchanged - only visibility is modified. * @returns The response of updating the hidden state of Llms.txt file */ (options?: UpdateLlmsTxtHiddenStatusOptions): Promise>; } declare const getLlmsTxt: MaybeContext & typeof getLlmsTxt$1>; declare const updateLlmsTxt: MaybeContext & typeof updateLlmsTxt$1>; declare const appendLlmsTxt: MaybeContext & typeof appendLlmsTxt$1>; declare const updateLlmsTxtHiddenStatus: MaybeContext & typeof updateLlmsTxtHiddenStatus$1>; export { AppendLlmsTxtOptions, AppendLlmsTxtResponse, GetLlmsTxtOptions, GetLlmsTxtResponse, UpdateLlmsTxtHiddenStatusOptions, UpdateLlmsTxtHiddenStatusResponse, UpdateLlmsTxtOptions, UpdateLlmsTxtResponse, appendLlmsTxt, getLlmsTxt, updateLlmsTxt, updateLlmsTxtHiddenStatus };