export { getFilePathResolved };
export { getFilePathUnresolved };
export { getFilePathAbsoluteUserRootDir };
export { getFilePathToShowToUserFromUnkown };
export { getModuleFilePathAbsolute };
export { getModuleFilePathRelative };
export { cleanFilePathUnkown };
export { assertModuleId };
import type { FilePathResolved, FilePathUnresolved } from '../../../shared/page-configs/FilePath.js';
import type { ResolvedConfig } from 'vite';
declare function getFilePathResolved(args: {
    userRootDir: string;
} & ({
    filePathAbsoluteFilesystem: string;
    importPathAbsolute: string;
} | {
    filePathAbsoluteUserRootDir: string;
    importPathAbsolute?: string;
})): FilePathResolved;
declare function getFilePathUnresolved(args: {
    importPathAbsolute: string;
}): FilePathUnresolved;
declare function getFilePathAbsoluteUserRootDir({ filePathAbsoluteFilesystem, userRootDir }: {
    filePathAbsoluteFilesystem: string;
    userRootDir: string;
}): string | null;
declare function getModuleFilePathAbsolute(moduleId: string, config: ResolvedConfig): string;
declare function getModuleFilePathRelative(moduleId: string, config: ResolvedConfig): string;
declare function assertModuleId(moduleId: string): void;
declare function getFilePathToShowToUserFromUnkown(filePathUnkown: string, userRootDir: string): string;
declare function cleanFilePathUnkown(filePathUnknown: string): string;
