import type { NodePath } from '@babel/traverse'; import type * as t from '@babel/types'; /** * Ensure that any leading comment is preserved at the top of the processed file before additional imports are * dynamically inserted during the build. * * @param path */ export declare const preserveLeadingComments: (path: NodePath) => void;