/** * Interface for identity file configuration */ export interface IdentityFileConfig { identityFile: string; } /** * Request authorization using a Ziti identity file * * Reads a Ziti identity JSON file containing client certificates, * validates its structure and PEM format, and stores the cert material * in the system keychain. * * @param {IdentityFileConfig} config - Configuration containing the identity file path * @returns {Promise} */ export declare function requestIdentityFileAuthorization(config: IdentityFileConfig): Promise;