export type Callback<A extends any[] = never[], V = void> = (...args: A) => V;
