import React from 'react'; interface IPictureProps extends React.DetailedHTMLProps, HTMLElement> { src: string; className?: string; } export declare function Picture(props: IPictureProps): JSX.Element; export {};