import { PropsWithChildrenAndClassName } from '../../types'; export type MediaRatios = '16:9' | '1:1' | '4:3' | '3:4' | '3:2' | '2:3' | '1:2' | '2:1'; interface MediaBlockProps extends PropsWithChildrenAndClassName { ratio?: MediaRatios; height?: number; width?: number; } declare function MediaBlock({ ratio, className, height, width, ...props }: MediaBlockProps): import("react/jsx-runtime").JSX.Element; export { MediaBlock };