export type ActionReturnType = { update?: (newProps: Props) => void; destroy?: () => void; }; export type Action = (node: Element, props?: Props) => ActionReturnType | void;