import { BlockFC, IBlock } from '../components'; import { IBlockAttributes } from './types'; 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>;