/** * 配置中心 webconsole-common system_settings 配置 */ export interface SystemSettingsConfig { /** * 包年包月支持月份 */ support_subscription_monthly?: number[]; /** * 包年包月支持续费月份 */ support_subscription_renew_monthly?: number[]; /** * 是否支持包年包月 */ support_subscription?: boolean; /** * 是否支持计费 */ support_billing?: boolean; /** * 是否支持订单 */ support_order?: boolean; verify_code_method?: string; support_switch_lang?: boolean; support_phone?: boolean; terms_of_service?: string; privacy_agreement?: string; support_resource_shared?: boolean; /** * 是否使用内嵌文档 */ support_inner_help_center?: boolean; } /** * @deprecated 请使用 window.GLOBAL_CONFIG?.SYSTEM_SETTINGS; */ export declare const useSystemSettingsConfig: () => { data: SystemSettingsConfig | undefined; };