/** * (c) Meta Platforms, Inc. and affiliates. Confidential and proprietary. * * @format */ /** * Helper type summarizing the current status of the MetaGen service. * * For information about what each field here means, refer to * https://fburl.com/code/nbgkgopz, which is the ultimate source of truth. */ export type MetaGenServiceStatus = { xfb_metagen_status: { status_message?: string; status_level: number; active_sevs: Array<{ number: number; description: string; }>; active_alarms: Array<{ title: string; api_name: string; count: number; }>; }; xfb_metagen_gating: { user_has_access: boolean; }; }; /** * Queries the current status of the MetaGen service. */ export declare function getServiceStatus(): Promise;