/**
 * Options that can be passed to a credential manager during initialization.
 * These options allow configuration of credential manager behavior without
 * relying on environment variables.
 *
 * The structure and content of these options depends on the specific
 * credential manager implementation being used.
 *
 * @example
 * // Example for Windows credential persistence configuration
 * const options: ICredentialManagerOptions = {
 *   persist: "enterprise"
 * };
 *
 * @example
 * // Example for a custom credential manager's configuration
 * const options: ICredentialManagerOptions = {
 *   timeout: 5000,
 *   retryAttempts: 3,
 *   enableLogging: true
 * };
 */
export type ICredentialManagerOptions = {
    [key: string]: any;
};
//# sourceMappingURL=ICredentialManagerOptions.d.ts.map