import React from 'react'; declare global { interface Window { bundleNumber?: string; } } export interface VersionGuardProps { min_version?: string; max_version?: string; children: React.ReactNode; } /** * VersionGuard component that conditionally renders children based on window.bundleNumber * * @example * // Only show if version is 21.0.3 or higher * * * * * @example * // Only show if version is between 21.0.0 and 21.0.3 (inclusive) * * * */ export declare const VersionGuard: React.FC;