/**
 * Converts a filepath to a relative path and removes its file extension.
 * @param filepath - The full file path.
 * @param rootDir - The root directory to make the path relative to.
 * @returns The relative file path without the extension.
 */
export declare function removeExtensionAndMakeRelative(filepath: string, rootDir: string, debug?: boolean): string;
