import { PartnerParams } from './shared.js'; /** * Converts a numeric key to a Smile server URI and normalizes it to HTTPS. * @param {string|number} uriOrKey - The URI of a Smile ID server or a * numeric key that represents it. * @returns {string} Normalized HTTPS URI. */ export declare const mapServerUri: (uriOrKey: string | number) => string; /** @type {{source_sdk: string, source_sdk_version: string}} */ export declare const sdkVersionInfo: { source_sdk: string; source_sdk_version: string; }; /** * Validates that partner params contains required fields. * @param {object} partnerParams - required parameters for each job. * @param {string} partnerParams.user_id - your unique identifier for the user. * @param {string} partnerParams.job_id - your unique identifier for the job. * @param {string|number} partnerParams.job_type - type of job. * @throws {Error} if partnerParams is not an object or is missing required keys. * @returns {void} */ export declare const validatePartnerParams: (partnerParams: PartnerParams) => void;