import { RequestOptionsFactory } from '@wix/sdk-types'; /** * Checks whether the given domain is available for purchase. * * * You can purchase the specified domain in case the returned * `availability.available` boolean is `true`. The domain is already taken * when `false` is returned. * * The `domain` field must include the TLD. For example, `my-new-domain.com`. * * > __Important:__ This call requires an account level API key and cannot be authenticated with the standard authorization header. */ export declare function checkDomainAvailability(payload: object): RequestOptionsFactory;