import { FC } from 'react'; import { type ImageProps as LobeImageProps } from "../Image"; export interface ImageProps extends LobeImageProps { cover?: boolean; inStep?: boolean; } declare const Image: FC; export default Image;