import { MessageCreator } from './MessageCreator'; import { MessageCreatorTypes, SendTypes } from '../../types'; export declare class SaveFile extends MessageCreator { readonly path: string; readonly fileId?: string; sendType: SendTypes; type: MessageCreatorTypes; /** * Send chat action * @param path The path where you want to save the file * @param fileId Optional. File id you want to save. By default, sent media by the user * */ constructor(path: string, fileId?: string); }