export type Message = { type: string; payload?: any; state?: any; }; declare type Awaited = T extends Promise ? V : T;