Instead of a Dispatchers type/interface, have a constant that is all of the functions combined:
export const Dispatchers = {
createThing,
updateThing,
deleteThing,
};
Then, in the component class declaration, use typeof against the constant in the generic props param!