import "../../define/vds-poster.js"; import * as React from "react"; import { PosterElement } from "../../ui/poster/index.js"; /** Loads and displays the current media poster image. By default, the media provider's loading strategy is respected, otherwise you can specify `eager` or `lazy`. 💡 The following img attributes are applied: - `img-loading`: When the poster image is in the process of being downloaded by the browser. - `img-loaded`: When the poster image has successfully loaded. - `img-error`: When the poster image has failed to load. */ declare const Poster: React.ForwardRefExoticComponent> & {} & React.HTMLAttributes & { children?: React.ReactNode; } & React.RefAttributes>; export default Poster; //# sourceMappingURL=Poster.d.ts.map