import { Widget } from './Widget'; export declare type State = any; export declare type StateTransformers = any; export declare function registerRef(ref: string, component: Widget): void; export declare function getRef(ref: string): Widget; export declare function useComponent(comp: new () => any): { as: (name: string) => void; }; export declare function uuid(): string;