export type GroupImpl<T extends Record<string, any>> = {
    [P in keyof T]: IRamp<T[P]>;
};