export declare const DEFAULT_TWITTER_SUBDOMAIN = "api"; export declare const DEFAULT_TWITTER_VERSION = "1.1"; /** * Twitter expects POST body parameters to be URL-encoded: https://developer.twitter.com/en/docs/basics/authentication/guides/creating-a-signature * However, some endpoints expect a JSON payload - https://developer.twitter.com/en/docs/direct-messages/sending-and-receiving/api-reference/new-event * It appears that JSON payloads don't need to be included in the signature, because sending DMs works without signing the POST body */ export declare const JSON_ENDPOINTS: ReadonlyArray;