/** * (c) Meta Platforms, Inc. and affiliates. Confidential and proprietary. * * @format */ import React from 'react'; type SrcFileProps = { file: string; repo: string; label?: string; }; declare const SrcFile: (props: SrcFileProps) => React.JSX.Element; export default SrcFile;