import { ITelegramClient } from '../../client.types.js';
import { InputPeerLike } from '../../types/index.js';
/**
 * Generate a link to a story.
 *
 * Basically the link format is `t.me/<username>/s/<story_id>`,
 * and if the user doesn't have a username, `USER_PUBLIC_MISSING` is thrown.
 *
 * I have no idea why is this an RPC call, but whatever
 */
export declare function getStoryLink(client: ITelegramClient, peerId: InputPeerLike, storyId: number): Promise<string>;
