import { MessageCreator } from './MessageCreator'; import { MessageCreatorTypes, SendTypes } from '../../types'; export declare class AdminTitle extends MessageCreator { readonly title: string; readonly userId?: number; sendType: SendTypes; type: MessageCreatorTypes; /** * Set admin custom title * @param title Admin custom title (status, post, job title. 0-16 characters, emoji are not allowed) * @param userId User id you want to set a custom title for * @see https://core.telegram.org/bots/api#setchatadministratorcustomtitle * */ constructor(title: string, userId?: number); }