/**
 * Copyright © 2024 Nevis Security AG. All rights reserved.
 */
import { Version } from './Version';
/**
 * The object containing information about Nevis Mobile Authentication SDK for iOS.
 *
 * @group Essentials
 */
export declare abstract class IosMetaData {
    /**
     * The current version of Nevis Mobile Authentication SDK for iOS.
     */
    abstract mobileAuthenticationVersion: Version;
    /**
     * The {@link https://docs.nevis.net/mobilesdk/guide/configuration#facet-id | facet ID} used by
     * Nevis Mobile Authentication SDK for iOS.
     *
     * The facet ID of your application has to match the list of allowed facets stored provided by
     * the facet service of the backend.
     */
    abstract applicationFacetId: string;
    /**
     * Default constructor for {@link IosMetaData}.
     *
     * @param mobileAuthenticationVersion the current version of Nevis Mobile Authentication SDK for iOS.
     * @param applicationFacetId the facet ID used by Nevis Mobile Authentication SDK for iOS.
     * @returns an {@link IosMetaData} instance.
     */
    static create(mobileAuthenticationVersion: Version, applicationFacetId: string): IosMetaData;
    /**
     * Alternate constructor that creates a {@link IosMetaData} from a json.
     *
     * @param json contains the source for instance creation.
     * @returns a {@link IosMetaData} instance.
     */
    static fromJson(json: any): IosMetaData;
}
export declare class IOSMetaDataImpl extends IosMetaData {
    mobileAuthenticationVersion: Version;
    applicationFacetId: string;
    constructor(mobileAuthenticationVersion: Version, applicationFacetId: string);
    static fromJson(json: any): IOSMetaDataImpl;
}
//# sourceMappingURL=IosMetaData.d.ts.map