import { type HotTubOpenProfilePayload } from './shared'; /** * Open a Hot Tub uploader profile. * * @param payload Uploader profile payload. * @returns Hot Tub uploader profile URL. * @example * openProfile({ uploader: 'yanks' }) * // => 'hottub://profile?uploader=yanks' * @link https://docs.hottubapp.io/developers/url-schemes/ */ export declare function openProfile(payload: HotTubOpenProfilePayload): string;