import { type PCalcValuePayload } from './shared'; /** * Set PCalc's main register to a value and open the conversions section. * * @param payload Convert value payload. * @returns PCalc convert URL. * @example * convertValue({ value: 12345 }) * // => 'pcalc://convert/12345' * * @link https://www.pcalc.com/ios/history.html */ export declare function convertValue(payload: PCalcValuePayload): string;