import { proto } from "@whiskeysockets/baileys"; import { SendMediaTypes, SendMessageTypes, SendReadTypes, SendTypingTypes } from "../Types"; export declare const sendTextMessage: ({ sessionId, to, text, isGroup, ...props }: SendMessageTypes) => Promise; export declare const isGroup: (jid: string) => boolean; export declare const sendImage: ({ sessionId, to, text, isGroup, media, ...props }: SendMediaTypes) => Promise; export declare const sendVideo: ({ sessionId, to, text, isGroup, media, ...props }: SendMediaTypes) => Promise; export declare const sendDocument: ({ sessionId, to, text, isGroup, media, filename, ...props }: SendMediaTypes & { media: Buffer; filename: string; }) => Promise; /** * Give typing effect to target * * Looks like human typing * * * @param sessionId - Session ID * @param to - Target * @param duration - Duration in miliseconds typing effect will appear */ export declare const sendTyping: ({ sessionId, to, duration, isGroup, }: SendTypingTypes) => Promise; /** * Give typing effect to target * * Looks like human typing * * * @param sessionId - Session ID * @param to - Target * @param duration - Duration in miliseconds typing effect will appear */ export declare const readMessage: ({ sessionId, key }: SendReadTypes) => Promise; //# sourceMappingURL=index.d.ts.map