interface Props {
    attributes?: Record<string, any>;
}
/** Renders a self-closing HTML `<img>` element. Accepts optional attributes. */
declare const Img: import("svelte").Component<Props, {}, "">;
type Img = ReturnType<typeof Img>;
export default Img;
