import { MaxHeightProperty, MaxWidthProperty, PaddingTopProperty, HeightProperty, WidthProperty } from 'csstype'; import { GetAspectRatioProp } from '../utils/get-aspect-ratio'; export interface ContainerProp { paddingTop?: PaddingTopProperty; maxHeight?: MaxHeightProperty; maxWidth?: MaxWidthProperty; } export interface StyledContainerProps { $height?: HeightProperty; $width?: WidthProperty; } /** * @deprecated AspectRatioProps is deprecated and will be removed in the next major release. */ export interface AspectRatioProps extends GetAspectRatioProp, Omit { } //# sourceMappingURL=types.d.ts.map