import React from 'react'; /** * SSR Wrapper - Prevents hydration mismatches by hiding content until client-side */ interface SSRWrapperProps { children: React.ReactNode; fallback?: React.ReactNode; className?: string; } export declare function SSRWrapper({ children, fallback, className }: SSRWrapperProps): import("react/jsx-runtime").JSX.Element; /** * SSR Safe Component - Only renders on client-side */ interface SSRSafeProps { children: React.ReactNode; fallback?: React.ReactNode; } export declare function SSRSafe({ children, fallback }: SSRSafeProps): import("react/jsx-runtime").JSX.Element; /** * Client Only Script - Prevents hydration mismatches for scripts */ interface ClientOnlyScriptProps { children: string | (() => string); defer?: boolean; async?: boolean; } export declare function ClientOnlyScript({ children, defer, async }: ClientOnlyScriptProps): import("react/jsx-runtime").JSX.Element; export {};