import type { HTMLAttributes, ReactElement } from 'react'; export interface FadeOverlayProps extends HTMLAttributes { /** * Which edge should have the solid background color. * Defaults to bottom, which fits preview/paywall-style fades. */ edge?: 'top' | 'right' | 'bottom' | 'left'; /** * How far the fade reaches into the container. */ size?: 'sm' | 'md' | 'lg'; } export declare function FadeOverlay({ edge, size, className, 'aria-hidden': ariaHidden, ...rest }: FadeOverlayProps): ReactElement;