import { Deeplink } from './common.js';
/**
 * Public username links
 *
 * Used to link to public users, groups and channels
 */
export declare const publicUsername: Deeplink<{
    username: string;
}>;
/**
 * Temporary profile links
 *
 * Used to link to user profiles, generated using contacts.exportContactToken.
 * These links can be generated even for profiles that don't have a username,
 * and they have an expiration date, specified by the expires field of the exportedContactToken
 * constructor returned by contacts.exportContactToken.
 */
export declare const temporaryProfile: Deeplink<{
    token: string;
}>;
/**
 * Phone number links
 *
 * Used to link to public and private users by their phone number.
 */
export declare const phoneNumber: Deeplink<{
    phone: string;
}>;
