/** * (c) Meta Platforms, Inc. and affiliates. Confidential and proprietary. * * @format */ declare function getFilePathRelativeToRepoRoot(url: string): string | null; declare function getFilePathRelativeToDocsFolder(url: string, docsDir: string): string | null; declare function generateHash(str: string): string; export { getFilePathRelativeToRepoRoot, getFilePathRelativeToDocsFolder, generateHash, };