import { TItemImage, SIZES } from '../../types';
interface IImageItemInput {
    title?: string;
    width?: SIZES;
    data: string;
}
export declare const createImageItem: ({ title, width, data, }: IImageItemInput) => TItemImage;
export {};
