import { ImageWidgetConfig } from '@c8y/ngx-components/widgets/implementations/image';
export interface ExportedImageWidgetConfig extends ImageWidgetConfig {
    imageDetails: {
        file: {
            name: string;
            type: string;
        };
        base64: string;
        c8y_SHA256: string;
    };
}
export declare const imageWidgetDefinition: {
    id: "Image";
    label: "Image";
    description: "Display a single image selected from the user's file system.";
    loadComponent: () => Promise<import("@angular/core").Type<any> | typeof import("@c8y/ngx-components/widgets/implementations/image").ImageWidgetViewComponent>;
    loadConfigComponent: () => Promise<import("@angular/core").Type<any> | typeof import("@c8y/ngx-components/widgets/implementations/image").ImageWidgetConfigComponent>;
    previewImage: string;
    data: {
        schema: () => Promise<{
            default: typeof import("c8y-schema-loader?interfaceName=*");
            schema: import("json-schema").JSONSchema7;
        }>;
        export: typeof exportImageWidgetConfig;
        import: typeof importImageWidgetConfig;
        settings: {
            noNewWidgets: false;
            widgetDefaults: {
                _width: number;
                _height: number;
            };
            ng1: {
                options: {
                    noDeviceTarget: true;
                    groupsSelectable: false;
                };
            };
        };
    };
};
export declare const imageWidgetProviders: (import("@angular/core").ValueProvider | import("@angular/core").ExistingProvider | import("@angular/core").ClassProvider)[];
declare function exportImageWidgetConfig(config: ImageWidgetConfig): Promise<ExportedImageWidgetConfig>;
declare function importImageWidgetConfig(config: ExportedImageWidgetConfig): Promise<ImageWidgetConfig>;
export {};
//# sourceMappingURL=index.d.ts.map