import { default as React, ComponentPropsWithoutRef } from 'react'; import { AspectRatioValue } from '@viasat/beam-shared/components/aspectRatio'; export interface AspectRatioProps extends ComponentPropsWithoutRef<'div'> { /** * Specify the content for the media above the card */ children?: React.ReactNode; /** * Specify the aspect ratio. */ aspectRatio?: AspectRatioValue; } export declare const AspectRatio: { ({ children, aspectRatio, className: _className, style, ...props }: AspectRatioProps): import("react/jsx-runtime").JSX.Element; displayName: string; };