import '../demo/custom-component'; import { ArrayWidget, Widget } from './construct'; export declare class StorageItemWidget implements ArrayWidget { name: string; bool: boolean; constructor(name: string, bool: boolean); } export declare class StorageTestWidget implements Widget { items: StorageItemWidget[]; strProperty: string; boolProperty: string; init: (el: Element) => number; markup(): string; }