import React from "react"; export interface SSRSafeResponsiveContainerProps { width?: string | number; height?: string | number; aspect?: number; className?: string; children: React.ReactElement; } /** * SSR-safe wrapper for Recharts ResponsiveContainer * Maintains consistent container dimensions to minimize layout shift * while properly handling SSR hydration */ export declare function SSRSafeResponsiveContainer({ width, height, aspect, className, children, }: SSRSafeResponsiveContainerProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=ssr-safe-container.d.ts.map