/** * (c) Meta Platforms, Inc. and affiliates. Confidential and proprietary. * * @format */ export declare const docsets: { BLOKS_CORE: string; }; type Variable = { comment: string; initializer: string; name: string; type: string; }; export type Api = { uidocs_search: { results: { nodes: { title: string; api: { class_methods: { name: string; comment: string; return_type: { comment: string; type: string; }; variables: Variable[]; }[]; instance_methods: { comment: string; name: string; return_type: { comment: string; type: string; }; variables: Variable[]; }[]; properties: { name: string; description: string; is_required: boolean; type: string; type_info: string; }[]; }; }[]; }; }; }; export declare function getApi(args: { name: string; framework: string; docset?: string; }): Promise; export {};