/** * (c) Meta Platforms, Inc. and affiliates. Confidential and proprietary. * * @format */ export type Api = { xfb_static_docs_query: { static_docs_gks: { name: string; }[]; }; }; export declare function getGKs(): Promise; export declare function gk(gk_name: string): Promise;