/**
 * Check if a module is esm with `export default`
 */
export declare const hasExportDefault: <T = any>(mod: unknown) => mod is {
    default: T;
};
