/** * (c) Meta Platforms, Inc. and affiliates. Confidential and proprietary. */ type AdapterArgs = { baseDir: string; start: string; end: string; file: string; repo?: string; } & ({ lang: string; classname: string; symbol: string; } | Record); export declare function snippetContentProvider(args: AdapterArgs): Promise<{ content: string; filepath: string; }>; export {};