export declare let compatible: boolean; /** * Create a record for a hot module, which keeps track of its constructor * and instances */ export declare const createRecord: (id: string, options: {}) => void; /** * Check if module is recorded */ export declare function isRecorded(id: string): boolean; export declare const rerender: (id: any, arg: any) => void; export declare const reload: (id: any, arg: any) => void;