export declare function isWSLHost(systemEnvironment: string): boolean; export declare function isWSLBlockActive(): boolean; export declare function displayWSLWarning(): void; export declare function displayWSLBlockMessage(): void; export declare class WSLBlockedError extends Error { constructor(); } /** * Check WSL status and handle warning/blocking * * @param systemEnvironment - The system_environment value from specs * @throws WSLBlockedError if WSL host and block date has passed */ export declare function checkWSLStatus(systemEnvironment: string): void;