import { HOTPOptions } from "./hotp.options";
import { TOTPOptions } from "./totp.options";
type CommonOptions = {
    issuer: string;
    name: string;
};
export type UriOptions = ({
    type: "hotp";
} & CommonOptions & HOTPOptions) | ({
    type: "totp";
} & CommonOptions & TOTPOptions);
/**
 *
 *
 * @export
 * @param {UriOptions} options
 * @return {string}  {string}
 */
export declare function getKeyUri(options: UriOptions): string;
export {};
