import { ErrorUnion, UsersUnion } from '../outputs'; /** * Returns a list of users who are administrators of the chat * @param {Object} params * @param {number} [params.chatId] - Chat identifier * @param {Object} state * @returns {UsersUnion | ErrorUnion} */ export declare type GetChatAdministratorsMethod = (params: GetChatAdministratorsParams, state?: Record) => Promise; export interface GetChatAdministratorsParams { /** Chat identifier */ chatId?: number; }