export interface Container { minWidth?: number | null; minHeight?: number | null; maxWidth?: number | null; maxHeight?: number | null; } export declare const Container: import("styled-components").StyledComponent<"picture", import("styled-components").DefaultTheme, Container, never>; export interface Img { flexible?: "width" | "height" | "full" | null; apectRatio: string | null; } export declare const Img: import("styled-components").StyledComponent<"img", import("styled-components").DefaultTheme, Img, never>;