import { Deeplink } from './common.js';
/**
 * Share links
 *
 * Used to share a prepared message and URL into a chosen chat's text field.
 */
export declare const share: Deeplink<{
    url: string;
    text?: string;
}>;
/**
 * Boost links
 *
 * Used by users to boost channels, granting them the ability to post stories.
 */
export declare const boost: Deeplink<{
    username: string;
} | {
    channelId: number;
}>;
/**
 * Link to a shared folder (chat list)
 */
export declare const folder: Deeplink<{
    slug: string;
}>;
