/** * (c) Meta Platforms, Inc. and affiliates. Confidential and proprietary. * * @format */ type SymbolDef = { content: string; filepath: string; imageB64Data: string | null; }; export declare function getSymbol(repo: string, lang: string, classname: string, symbol: string): Promise; /** * Request the content of a file from another repo. * * Will throw subtypes of StaticDocsError depending on conditions, which must be handled appropriately. * See @file errors.ts for explanations of possible errors and how to handle them. * * @param repo examples: 'www', 'fbsource'... * @param filepath should be relative to the repo root, e.g. 'fbandroid/something' */ export declare function getFileContent(repo: string, filepath: string): Promise; export {};