import { BoxProps } from "@specimen/foundation"; declare const aspectRatios: { portrait: import("@emotion/utils").SerializedStyles; landscape: import("@emotion/utils").SerializedStyles; square: import("@emotion/utils").SerializedStyles; }; export declare type AspectRatioType = keyof typeof aspectRatios; interface Props extends BoxProps { type?: AspectRatioType; } declare const AspectRatio: (props: Props) => import("@emotion/react/jsx-runtime").JSX.Element; export default AspectRatio;