import React from 'react'; type FixedAspectRatioProps = { width: number; height: number; style?: React.CSSProperties; element?: string; [key: string]: string | boolean | React.ReactNode | React.CSSProperties; }; /** * High Order Component that forces a fixed aspect ratio to prevent Cumulative Layout Shift * for elements that have a deterministic aspect ratio server-side */ export declare const FixedAspectRatio: React.FC>; export {};