export interface AspectRatioProps extends React.ComponentProps<"div"> { /** * 宽高比, 如: 16 / 9, 4 / 3, 1920 / 1080 * 取值 @link https://developer.mozilla.org/en-US/docs/Web/CSS/aspect-ratio * @default 1 */ ratio: string; className?: string; children?: React.ReactNode; } export declare function AspectRatio(props: AspectRatioProps): import("react").JSX.Element;