export interface IPictureProps { images?: string; image?: string; imageLow?: string; alt?: string; height: string; width: string; objectFit?: 'none' | 'cover' | 'contain' | 'fill' | 'scale-down'; } export declare const Wrapper: import("styled-components").StyledComponent<"div", any, {}, never>; export declare const Image: import("styled-components").StyledComponent<"img", any, { width: string; height: string; objectFit: string; }, never>;