import { RequestOptionsFactory } from '@wix/sdk-types'; /** Retrieves the Ads.txt file. */ export declare function getAdsTxt(payload: object): RequestOptionsFactory; /** * Replaces the Ads.txt file. * * When setting `content` to an empty string, an empty Ads.txt file is created. To reset Ads.txt to Wix's default, set `default` to `true` and omit `content`. */ export declare function updateAdsTxt(payload: object): RequestOptionsFactory; /** * Adds `content` to the Ads.txt file. * * To reset the Ads.txt file to Wix's default, set `default` to `true` and omit `content`. */ export declare function appendAdsTxt(payload: object): RequestOptionsFactory;