import { OaBroadcastOptions, OaGetConversationOptions, OaGetConversationResponse, OaGetFollowersOptions, OaGetFollowersResponse, OaGetInfoOptions, OaGetInfoResponse, OaGetProfileOptions, OaGetProfileResponse, OaGetRecentChatOptions, OaGetRecentChatResponse, OaListMessageOptions, OaListTagsOptions, OaListTagsResponse, OaManageFollowerTagOptions, OaManageIpOptions, OaManageIpResponse, OaManageTagOptions, OaManageTagResponse, OaMediaMessageOptions, OaMessageOptions, OaMessageResponse, OaReplyMessageOptions, OaRequestMessageOptions, OaTextMessageOptions, OaUpdateFollowerInfoOptions, OaUpdateFollowerInfoReponse, OaUploadImageResponse, OaUploadOptions } from "./types"; export declare const message: (options: OaMessageOptions) => Promise; export declare const reply_message: (options: OaReplyMessageOptions) => Promise; export declare const text_message: (options: OaTextMessageOptions) => Promise; export declare const media_message: (options: OaMediaMessageOptions) => Promise; export declare const list_message: (options: OaListMessageOptions) => Promise; export declare const request_info_message: (options: OaRequestMessageOptions) => Promise; export declare const broadcast: (options: OaBroadcastOptions) => Promise; export declare const register_ip: (options: OaManageIpOptions) => Promise; export declare const remove_ip: (options: OaManageIpOptions) => Promise; export declare const get_followers: (options: OaGetFollowersOptions) => Promise; export declare const get_profile: (options: OaGetProfileOptions) => Promise; export declare const get_info: (options: OaGetInfoOptions) => Promise; export declare const get_recent_chat: (options: OaGetRecentChatOptions) => Promise; export declare const get_conversation: (options: OaGetConversationOptions) => Promise; export declare const update_follower_info: (options: OaUpdateFollowerInfoOptions) => Promise; export declare const upload_image: (options: OaUploadOptions) => Promise; export declare const upload_gif: (options: OaUploadOptions) => Promise; export declare const upload_file: (options: OaUploadOptions) => Promise; export declare const list_tags: (options: OaListTagsOptions) => Promise; export declare const assign_tag: (options: OaManageFollowerTagOptions) => Promise; export declare const remove_follower_tag: (options: OaManageFollowerTagOptions) => Promise; export declare const delete_tag: (options: OaManageTagOptions) => Promise;