export interface InstantiateReturnValue extends Result<InstantiateReturnValueOk, DispatchError> {
  readonly isErr: boolean;
  readonly asErr: DispatchError;
  readonly isOk: boolean;
  readonly asOk: InstantiateReturnValueOk;