interface PictureProps extends React.HTMLAttributes { children?: React.ReactNode; style?: React.CSSProperties; src?: string; alt: string; ar?: number; arDesktop?: number; arMobile?: number; draggable?: boolean; border?: boolean; borderColor?: React.CSSProperties['color']; maxHeight?: React.CSSProperties['maxHeight']; maxHeightMobile?: React.CSSProperties['maxHeight']; maxHeightDesktop?: React.CSSProperties['maxHeight']; sizes?: string; srcset?: string; loading?: 'eager' | 'lazy'; srcMobile?: string; srcDesktop?: string; figcaption?: string; figcaptionColor?: string; } export declare const Picture: React.FC; export {};