import { Raw } from '../../platform.node.js';
import type { Snake } from '../../Client/index.js';
export interface getParticipantsParams {
    offset?: number;
    limit?: number;
    query?: string;
    filter?: 'all' | 'kicked' | 'restricted' | 'bots' | 'recents' | 'administrators' | 'mentions' | 'banned' | 'contacts';
}
export declare function getParticipants(client: Snake, chatId: bigint | string, more?: getParticipantsParams): Promise<Raw.TypeChatParticipants | Raw.channels.TypeChannelParticipants | undefined>;
