/** * Is Main Module Utility */ interface IsMainModuleOptions { currentFile: string; } /** * Check if the current module is the main entry point */ export declare function isMainModule(options: IsMainModuleOptions): boolean; export {};