import { MessageCreator } from './MessageCreator'; import { MessageCreatorTypes, SendTypes } from '../../types'; export declare class SaveProfilePhoto extends MessageCreator { readonly path: string; readonly index?: number; sendType: SendTypes; type: MessageCreatorTypes; /** * Send chat action * @param path The path where you want to save the file * @param index Optional. Index of the user profile photo you want to save. 0 index by default * */ constructor(path: string, index?: number); }