export interface ImageComponentLocalization { unlabeledImageNode: string; text: (text: string) => string; imageNode: (description: string) => string; stroke: string; svgObject: string; emptyBackground: string; gridBackground: string; filledBackgroundWithColor: (color: string) => string; restyledElement: (elementDescription: string) => string; } export declare const defaultComponentLocalization: ImageComponentLocalization;