export { transpileAndExecuteFile };
export { getConfigBuildErrorFormatted };
export { getConfigExecutionErrorIntroMsg };
export { isTemporaryBuildFile };
export type { EsbuildCache };
import type { FilePathResolved } from '../../../../../../shared/page-configs/FilePath.js';
type FileExports = {
    fileExports: Record<string, unknown>;
};
type EsbuildCache = {
    transpileCache: Record<string, // filePathAbsoluteFilesystem
    Promise<FileExports>>;
    vikeConfigDependencies: Set<string>;
};
declare function transpileAndExecuteFile(filePath: FilePathResolved, userRootDir: string, isExtensionConfig: boolean, esbuildCache: EsbuildCache): Promise<FileExports>;
declare function getConfigBuildErrorFormatted(err: unknown): null | string;
declare function getConfigExecutionErrorIntroMsg(err: unknown): string | null;
declare function isTemporaryBuildFile(filePath: string): boolean;
