/** Query parameters for requesting tenant option's detail. */
export interface ITenantOptionDetailParams {
    /**
     * Determines in which context the value of a tenant option will be evaluated:
     * - `current`: will return the value which is explicitly set in the current tenant,
     * - `inherited`: will return the value which is inherited from the parent tenant,
     * - by default it will return either the value from current tenant or from parent tenant (if the former is not set).
     */
    evaluate?: 'current' | 'inherited';
}
//# sourceMappingURL=ITenantOptionDetailParams.d.ts.map