export interface AppInstance { bootstrap: (props: any) => Promise; mount: (props: any) => Promise; unmount: (props: any) => Promise; update: (props: any) => Promise; }