import { ITelegramClient } from '../../client.types.js';
import { AllStories } from '../../types/index.js';
/**
 * Get all stories (e.g. to load the top bar)
 */
export declare function getAllStories(client: ITelegramClient, params?: {
    /**
     * Offset from which to fetch stories
     */
    offset?: string;
    /**
     * Whether to fetch stories from "archived" (or "hidden") peers
     */
    archived?: boolean;
}): Promise<AllStories>;
