import { IPublicSettingsResponse, ISettingsResponse, IUpdateSettings } from './interfaces'; import { UserJwtOptions } from '../interfaces'; import { BaseApiClient } from '../BaseApiClient'; export declare class AccountSettingsApi extends BaseApiClient { constructor(appName: string); /** * Update account settings for a tenant. * TenantId is calculated in the backend from context of the `authorized user`. */ updateSettings: (body: IUpdateSettings, options?: UserJwtOptions) => Promise; /** * Get account settings for a tenant. */ getSettings: (options?: UserJwtOptions) => Promise; /** * Get public account settings. */ getPublicSettings: () => Promise; } declare const _default: AccountSettingsApi; export default _default;