import { BlockFC, IBlock } from '../components/index.js'; import { IBlockAttributes } from './types.js'; export interface ImageBlockProps extends IBlockAttributes { width?: number; height?: number; sizeSlug?: string; linkDestination?: string; src: string; alt?: string; } export interface IImageBlock extends IBlock { } export declare const ImageBlock: BlockFC>;