import type babelCore from '@babel/core'; declare type ObjectToASTOptions = { babel: typeof babelCore; fileOptions: babelCore.TransformOptions; }; export default function objectToAST(object: unknown, { babel, fileOptions }: ObjectToASTOptions): babelCore.types.Expression | null | undefined; export {};