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<OaMessageResponse>;
export declare const reply_message: (options: OaReplyMessageOptions) => Promise<OaMessageResponse>;
export declare const text_message: (options: OaTextMessageOptions) => Promise<OaMessageResponse>;
export declare const media_message: (options: OaMediaMessageOptions) => Promise<OaMessageResponse>;
export declare const list_message: (options: OaListMessageOptions) => Promise<OaMessageResponse>;
export declare const request_info_message: (options: OaRequestMessageOptions) => Promise<OaMessageResponse>;
export declare const broadcast: (options: OaBroadcastOptions) => Promise<OaMessageResponse>;
export declare const register_ip: (options: OaManageIpOptions) => Promise<OaManageIpResponse>;
export declare const remove_ip: (options: OaManageIpOptions) => Promise<OaManageIpResponse>;
export declare const get_followers: (options: OaGetFollowersOptions) => Promise<OaGetFollowersResponse>;
export declare const get_profile: (options: OaGetProfileOptions) => Promise<OaGetProfileResponse>;
export declare const get_info: (options: OaGetInfoOptions) => Promise<OaGetInfoResponse>;
export declare const get_recent_chat: (options: OaGetRecentChatOptions) => Promise<OaGetRecentChatResponse>;
export declare const get_conversation: (options: OaGetConversationOptions) => Promise<OaGetConversationResponse>;
export declare const update_follower_info: (options: OaUpdateFollowerInfoOptions) => Promise<OaUpdateFollowerInfoReponse>;
export declare const upload_image: (options: OaUploadOptions) => Promise<OaUploadImageResponse>;
export declare const upload_gif: (options: OaUploadOptions) => Promise<OaUploadImageResponse>;
export declare const upload_file: (options: OaUploadOptions) => Promise<OaUploadImageResponse>;
export declare const list_tags: (options: OaListTagsOptions) => Promise<OaListTagsResponse>;
export declare const assign_tag: (options: OaManageFollowerTagOptions) => Promise<OaManageTagResponse>;
export declare const remove_follower_tag: (options: OaManageFollowerTagOptions) => Promise<OaManageTagResponse>;
export declare const delete_tag: (options: OaManageTagOptions) => Promise<OaManageTagResponse>;
