import { ITelegramClient } from '../../client.types.js';
import { ForumTopic, InputPeerLike } from '../../types/index.js';
/**
 * Reorder pinned forum topics
 *
 * Only admins with `manageTopics` permission can do this.
 */
export declare function reorderPinnedForumTopics(client: ITelegramClient, params: {
    /** Chat ID or username */
    chatId: InputPeerLike;
    /**
     * Order of the pinned topics
     */
    order: (number | ForumTopic)[];
    /**
     * Whether to un-pin topics not present in the order
     */
    force?: boolean;
}): Promise<void>;
