import React from 'react'; import { type PictureProps } from '../Picture'; export interface PosterProps extends PictureProps { /** Low quality img source which will be used while normal img is loading. Eg. data url. */ readonly src0?: string; } export default function Poster({ src, src0, hidden, timeout, onShown, onHidden, onUnmount, ...rest }: PosterProps): React.JSX.Element;